summaryrefslogtreecommitdiff
path: root/include/linux/jbd.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@digeo.com>2003-04-08 21:30:52 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-04-08 21:30:52 -0700
commite1851a6c19fcbddc2cead061ee2916239f49b06f (patch)
tree070cde2d90f2b2c9da93896655f23fbc55f41fea /include/linux/jbd.h
parent6f924b79e72dc3935d2f23d5e81bffd0a8a517ad (diff)
[PATCH] JBD pasting warning fix
From: "Hua Zhong" <hzhong@cisco.com> Fix a token-pasting warning from recent gcc's
Diffstat (limited to 'include/linux/jbd.h')
-rw-r--r--include/linux/jbd.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h
index 2cddeb1f450e..e00aec05a9b5 100644
--- a/include/linux/jbd.h
+++ b/include/linux/jbd.h
@@ -274,8 +274,9 @@ void buffer_assertion_failure(struct buffer_head *bh);
#define __journal_expect(expr, why...) \
do { \
if (!(expr)) { \
- printk(KERN_ERR "EXT3-fs unexpected failure: %s;\n", # expr); \
- printk(KERN_ERR ## why); \
+ printk(KERN_ERR \
+ "EXT3-fs unexpected failure: %s;\n",# expr); \
+ printk(KERN_ERR why); \
} \
} while (0)
#define J_EXPECT(expr, why...) __journal_expect(expr, ## why)