ANDROID: sdcardfs: Use seq_puts over seq_printf
Signed-off-by: Daniel Rosenberg <drosen@google.com> Bug: 35331000 Change-Id: I3795ec61ce61e324738815b1ce3b0e09b25d723f
This commit is contained in:
parent
497e393b31
commit
e7ea867bd8
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ static int sdcardfs_show_options(struct vfsmount *mnt, struct seq_file *m,
|
|||
if (vfsopts->gid != 0)
|
||||
seq_printf(m, ",gid=%u", vfsopts->gid);
|
||||
if (opts->multiuser)
|
||||
seq_printf(m, ",multiuser");
|
||||
seq_puts(m, ",multiuser");
|
||||
if (vfsopts->mask)
|
||||
seq_printf(m, ",mask=%u", vfsopts->mask);
|
||||
if (opts->fs_user_id)
|
||||
|
|
Loading…
Reference in a new issue