]> git.sur5r.net Git - u-boot/commitdiff
dm: test: Fix nit with position of backslash
authorSimon Glass <sjg@chromium.org>
Fri, 19 May 2017 02:10:00 +0000 (20:10 -0600)
committerSimon Glass <sjg@chromium.org>
Thu, 1 Jun 2017 13:03:17 +0000 (07:03 -0600)
Line up this backslash with all the others.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/test/ut.h

index 85434d785a835a76575f033b5f81b371610102c7..d176df58c7eaf5f93341848bc85922c4028264b1 100644 (file)
@@ -104,7 +104,7 @@ void ut_failf(struct unit_test_state *uts, const char *fname, int line,
 }
 
 /* Assert that a pointer is not an error pointer */
-#define ut_assertok_ptr(expr) {                                        \
+#define ut_assertok_ptr(expr) {                                                \
        const void *val = (expr);                                       \
                                                                        \
        if (IS_ERR(val)) {                                              \