diff options
| author | Andrew Morton <akpm@osdl.org> | 2003-12-29 23:45:23 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-12-29 23:45:23 -0800 |
| commit | 002a7d6ea19d06cc4998567a947c212d3e71b600 (patch) | |
| tree | 55ebb30a968a5b6b7a8e74ef454a8ebd4ed06490 | |
| parent | 8d15d343efdff545174e9da9893f6f00683304f3 (diff) | |
[PATCH] FAT: trivial printk format fix (4/10)
From: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Fix printk format
| -rw-r--r-- | fs/fat/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 6bd11a2617d1..23837158cde2 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -191,9 +191,9 @@ static int fat_show_options(struct seq_file *m, struct vfsmount *mnt) int isvfat = opts->isvfat; if (opts->fs_uid != 0) - seq_printf(m, ",uid=%d", opts->fs_uid); + seq_printf(m, ",uid=%u", opts->fs_uid); if (opts->fs_gid != 0) - seq_printf(m, ",gid=%d", opts->fs_gid); + seq_printf(m, ",gid=%u", opts->fs_gid); seq_printf(m, ",fmask=%04o", opts->fs_fmask); seq_printf(m, ",dmask=%04o", opts->fs_dmask); if (sbi->nls_disk) |
