summaryrefslogtreecommitdiffstats
path: root/fs_mgr/include
diff options
context:
space:
mode:
authorWei Wang <wvw@google.com>2017-02-24 17:41:38 -0800
committerWei Wang <wvw@google.com>2017-02-24 19:33:53 -0800
commit4d71bc5350a9715314e5d54b32fc4220a9e4787a (patch)
tree585dde37df36623bdcb89252d0d142a9d006c0ff /fs_mgr/include
parent76e9a180a85e8178cf8b130b8131363e459f22de (diff)
downloadcore-4d71bc5350a9715314e5d54b32fc4220a9e4787a.tar.gz
core-4d71bc5350a9715314e5d54b32fc4220a9e4787a.tar.bz2
core-4d71bc5350a9715314e5d54b32fc4220a9e4787a.zip
fs_mgr: fix const parameter in fs_mgr_do_tmpfs_mount
Bug: 35425974 Test: mma, marlin/angler boot Change-Id: Ibadd04ad3a7c4ea184a6344d566302d577d8fee3
Diffstat (limited to 'fs_mgr/include')
-rw-r--r--fs_mgr/include/fs_mgr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs_mgr/include/fs_mgr.h b/fs_mgr/include/fs_mgr.h
index 52f27ab51..a5e5bebb9 100644
--- a/fs_mgr/include/fs_mgr.h
+++ b/fs_mgr/include/fs_mgr.h
@@ -106,7 +106,7 @@ int fs_mgr_mount_all(struct fstab *fstab, int mount_mode);
int fs_mgr_do_mount(struct fstab *fstab, const char *n_name, char *n_blk_device,
char *tmp_mount_point);
int fs_mgr_do_mount_one(struct fstab_rec *rec);
-int fs_mgr_do_tmpfs_mount(char *n_name);
+int fs_mgr_do_tmpfs_mount(const char *n_name);
int fs_mgr_unmount_all(struct fstab *fstab);
int fs_mgr_get_crypt_info(struct fstab *fstab, char *key_loc,
char *real_blk_device, int size);