aboutsummaryrefslogtreecommitdiff
path: root/fs/sdcardfs
diff options
context:
space:
mode:
authorDaniel Rosenberg <drosen@google.com>2017-03-21 17:27:40 -0700
committerMister Oyster <oysterized@gmail.com>2017-04-13 12:35:23 +0200
commit052d2d0fe8bbfa17f11c2b4b9562c21accc944ca (patch)
tree55eb48a6460722cd688c52a28ecbb1b860cc4f88 /fs/sdcardfs
parent449db1c880fc0b03c37cce94d0c9e95017f158e7 (diff)
ANDROID: sdcardfs: Use seq_puts over seq_printf
Signed-off-by: Daniel Rosenberg <drosen@google.com> Bug: 35331000 Change-Id: I3795ec61ce61e324738815b1ce3b0e09b25d723f
Diffstat (limited to 'fs/sdcardfs')
-rwxr-xr-xfs/sdcardfs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sdcardfs/super.c b/fs/sdcardfs/super.c
index 67b4ae243..a3393e959 100755
--- a/fs/sdcardfs/super.c
+++ b/fs/sdcardfs/super.c
@@ -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)