Skip to content

Commit 8cdd7cc

Browse files
ian-abbotttorvalds
authored andcommitted
linux/bug.h: correct "(foo*)" should be "(foo *)"
Correct this checkpatch.pl error: |ERROR: "(foo*)" should be "(foo *)" |#19: FILE: include/linux/bug.h:19: |+#define BUILD_BUG_ON_NULL(e) ((void*)0) Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ian Abbott <[email protected]> Acked-by: Michal Nazarewicz <[email protected]> Cc: Kees Cook <[email protected]> Cc: Steven Rostedt <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Jakub Kicinski <[email protected]> Cc: Rasmus Villemoes <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent e9d5a48 commit 8cdd7cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/bug.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ struct pt_regs;
1616
#define __BUILD_BUG_ON_NOT_POWER_OF_2(n) (0)
1717
#define BUILD_BUG_ON_NOT_POWER_OF_2(n) (0)
1818
#define BUILD_BUG_ON_ZERO(e) (0)
19-
#define BUILD_BUG_ON_NULL(e) ((void*)0)
19+
#define BUILD_BUG_ON_NULL(e) ((void *)0)
2020
#define BUILD_BUG_ON_INVALID(e) (0)
2121
#define BUILD_BUG_ON_MSG(cond, msg) (0)
2222
#define BUILD_BUG_ON(condition) (0)

0 commit comments

Comments
 (0)