diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-02-08 04:21:18 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 09:22:38 -0800 |
commit | ec26e11740cdff8c3c8330ea235478704ffb4a71 (patch) | |
tree | 45f57c931226fa44fdb1de521cd781d62a9408d5 /fs/reiserfs | |
parent | 9b7880e7bb30e641037550888b5c22d94c77f254 (diff) | |
download | linux-ec26e11740cdff8c3c8330ea235478704ffb4a71.tar.bz2 |
reiserfs: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Acked-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r-- | fs/reiserfs/procfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/procfs.c b/fs/reiserfs/procfs.c index 001144621672..8f86c52b30d8 100644 --- a/fs/reiserfs/procfs.c +++ b/fs/reiserfs/procfs.c @@ -444,7 +444,7 @@ static int r_show(struct seq_file *m, void *v) return show(m, v); } -static struct seq_operations r_ops = { +static const struct seq_operations r_ops = { .start = r_start, .next = r_next, .stop = r_stop, |