diff options
Diffstat (limited to 'fs/ext2')
-rw-r--r-- | fs/ext2/ext2.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext2/ext2.h b/fs/ext2/ext2.h index af9fc89b1b2d..9a4e5e206d08 100644 --- a/fs/ext2/ext2.h +++ b/fs/ext2/ext2.h | |||
@@ -135,10 +135,10 @@ extern long ext2_compat_ioctl(struct file *, unsigned int, unsigned long); | |||
135 | struct dentry *ext2_get_parent(struct dentry *child); | 135 | struct dentry *ext2_get_parent(struct dentry *child); |
136 | 136 | ||
137 | /* super.c */ | 137 | /* super.c */ |
138 | extern void ext2_error (struct super_block *, const char *, const char *, ...) | 138 | extern __printf(3, 4) |
139 | __attribute__ ((format (printf, 3, 4))); | 139 | void ext2_error(struct super_block *, const char *, const char *, ...); |
140 | extern void ext2_msg(struct super_block *, const char *, const char *, ...) | 140 | extern __printf(3, 4) |
141 | __attribute__ ((format (printf, 3, 4))); | 141 | void ext2_msg(struct super_block *, const char *, const char *, ...); |
142 | extern void ext2_update_dynamic_rev (struct super_block *sb); | 142 | extern void ext2_update_dynamic_rev (struct super_block *sb); |
143 | extern void ext2_write_super (struct super_block *); | 143 | extern void ext2_write_super (struct super_block *); |
144 | 144 | ||