diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-18 20:10:00 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-01 07:03:17 -0600 |
commit | fe3c0b5b9306f957a6c25551a73ab8a70735699b (patch) | |
tree | f92fe08fe32e8ccef51a67ca4bd5710e63e87bcd /include/test | |
parent | 03753c9a7bef8436650dbdcfc1f81918765b3fb4 (diff) | |
download | u-boot-fe3c0b5b9306f957a6c25551a73ab8a70735699b.tar.gz |
dm: test: Fix nit with position of backslash
Line up this backslash with all the others.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/test')
-rw-r--r-- | include/test/ut.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/test/ut.h b/include/test/ut.h index 85434d785a..d176df58c7 100644 --- a/include/test/ut.h +++ b/include/test/ut.h @@ -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)) { \ |