summaryrefslogtreecommitdiffstats
path: root/fs/ubifs/find.c
diff options
context:
space:
mode:
authorJiang Biao2018-02-28 03:13:57 +0100
committerRichard Weinberger2018-04-04 23:48:10 +0200
commitcc1947834827379a5fd66e8b73969fd7eaab4516 (patch)
tree4c0c99b948a99c0d9c50f9a5e2e5ed5a8f836758 /fs/ubifs/find.c
parentubifs: remove unnecessary assignment (diff)
downloadkernel-qcow2-linux-cc1947834827379a5fd66e8b73969fd7eaab4516.tar.gz
kernel-qcow2-linux-cc1947834827379a5fd66e8b73969fd7eaab4516.tar.xz
kernel-qcow2-linux-cc1947834827379a5fd66e8b73969fd7eaab4516.zip
ubifs: Constify struct ubifs_lprops in scan_for_leb_for_idx
Constify struct ubifs_lprops in scan_for_leb_for_idx to be consistent with other references. Signed-off-by: Jiang Biao <jiang.biao2@zte.com.cn> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs/find.c')
-rw-r--r--fs/ubifs/find.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/find.c b/fs/ubifs/find.c
index 2dcf3d473fec..9571616b5dda 100644
--- a/fs/ubifs/find.c
+++ b/fs/ubifs/find.c
@@ -632,7 +632,7 @@ static int scan_for_idx_cb(struct ubifs_info *c,
*/
static const struct ubifs_lprops *scan_for_leb_for_idx(struct ubifs_info *c)
{
- struct ubifs_lprops *lprops;
+ const struct ubifs_lprops *lprops;
struct scan_data data;
int err;