commit | ac6614b76478e68173ccf7ad4e9e98035cc9c21d | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Wed May 22 22:22:04 2013 -0400 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Sat Jun 29 12:57:05 2013 +0400 |
tree | ed2c996b6e64e44c5a752dfafd650bfa1eb7f035 | |
parent | 2233f31aade393641f0eaed43a71110e629bb900 [diff] [blame] |
[readdir] constify ->actor Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/include/linux/fs.h b/include/linux/fs.h index 237af62..7c30e3a 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h
@@ -1507,7 +1507,7 @@ */ typedef int (*filldir_t)(void *, const char *, int, loff_t, u64, unsigned); struct dir_context { - filldir_t actor; + const filldir_t actor; loff_t pos; };