diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-10 14:24:06 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-10 14:24:06 -0400 |
commit | 22341d8f33084c575ce5b7ea63b07d7290b68e2d (patch) | |
tree | 7366752dec4d59fd15b25a9f56ea09cd78c023e9 /fs/befs/btree.h | |
parent | e899108994540f09dae236571d100af6e0749905 (diff) | |
download | blackbird-obmc-linux-22341d8f33084c575ce5b7ea63b07d7290b68e2d.tar.gz blackbird-obmc-linux-22341d8f33084c575ce5b7ea63b07d7290b68e2d.zip |
befs: constify stuff a bit
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/befs/btree.h')
-rw-r--r-- | fs/befs/btree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/befs/btree.h b/fs/befs/btree.h index 92e781e5f30e..f2a8f637e9e0 100644 --- a/fs/befs/btree.h +++ b/fs/befs/btree.h @@ -4,10 +4,10 @@ */ -int befs_btree_find(struct super_block *sb, befs_data_stream * ds, +int befs_btree_find(struct super_block *sb, const befs_data_stream *ds, const char *key, befs_off_t * value); -int befs_btree_read(struct super_block *sb, befs_data_stream * ds, +int befs_btree_read(struct super_block *sb, const befs_data_stream *ds, loff_t key_no, size_t bufsize, char *keybuf, size_t * keysize, befs_off_t * value); |