mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
Missing 'const' from reiserfs MIN_KEY declaration.
In stree.c, MIN_KEY is declared const. The extern declaration in dir.c doesn't match... Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
772dce71f5
commit
5a1b639148
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
#include <linux/buffer_head.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
||||
extern struct reiserfs_key MIN_KEY;
|
||||
extern const struct reiserfs_key MIN_KEY;
|
||||
|
||||
static int reiserfs_readdir(struct file *, void *, filldir_t);
|
||||
static int reiserfs_dir_fsync(struct file *filp, struct dentry *dentry,
|
||||
|
|
Loading…
Reference in a new issue