diff options
author | Nikita Danilov <nikita@clusterfs.com> | 2005-10-31 00:03:10 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-31 02:37:26 +0100 |
commit | c0398ee6c2fe3c1743ecc74a6378b67ba0880a4f (patch) | |
tree | 7cf685c6bf404b7c1a063ecf47af1273f60d72c7 | |
parent | [PATCH] watchdog: update .owner field of struct pci_driver (diff) | |
download | linux-c0398ee6c2fe3c1743ecc74a6378b67ba0880a4f.tar.xz linux-c0398ee6c2fe3c1743ecc74a6378b67ba0880a4f.zip |
[PATCH] include/linux/kernel.h:BUILD_BUG_ON(): fix a comment
Fix comment describing BUILD_BUG_ON: BUG_ON is not an assertion
(unfortunately).
Signed-off-by: Nikita Danilov <nikita@clusterfs.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/linux/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 4367ce4db52a..f1925ccc9fe1 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -307,7 +307,7 @@ struct sysinfo { char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ }; -/* Force a compilation error if condition is false */ +/* Force a compilation error if condition is true */ #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) #ifdef CONFIG_SYSCTL |