diff options
author | Andy Shevchenko <ext-andriy.shevchenko@nokia.com> | 2011-04-13 16:20:25 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-04-14 15:28:44 +0300 |
commit | f96aa3ccf0fbb0e659e475d9ce9536b913067657 (patch) | |
tree | 10a359ee26f5867f6f5683774f72edcc577fbaca /mkfs.jffs2.c | |
parent | 3c18d07e5eda1f8dc0374d5abdc7c2297e6ba181 (diff) |
mkfs.jffs2: fix casting of printf argument
The compiler warns us about cast mismatch for %9lu specifier. In original code
the argument has __off64_t type. Here is a simple type casting fix.
Signed-off-by: Andy Shevchenko <ext-andriy.shevchenko@nokia.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'mkfs.jffs2.c')
-rw-r--r-- | mkfs.jffs2.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mkfs.jffs2.c b/mkfs.jffs2.c index 3aab533..7bb9ad1 100644 --- a/mkfs.jffs2.c +++ b/mkfs.jffs2.c @@ -1233,7 +1233,7 @@ static void recursive_populate_directory(struct filesystem_entry *dir) case S_IFDIR: if (verbose) { printf("\td %04o %9lu %5d:%-3d %s\n", - e->sb.st_mode & ~S_IFMT, e->sb.st_size, + e->sb.st_mode & ~S_IFMT, (unsigned long) e->sb.st_size, (int) (e->sb.st_uid), (int) (e->sb.st_gid), e->name); } @@ -1243,7 +1243,7 @@ static void recursive_populate_directory(struct filesystem_entry *dir) case S_IFSOCK: if (verbose) { printf("\ts %04o %9lu %5d:%-3d %s\n", - e->sb.st_mode & ~S_IFMT, e->sb.st_size, + e->sb.st_mode & ~S_IFMT, (unsigned long) e->sb.st_size, (int) e->sb.st_uid, (int) e->sb.st_gid, e->name); } write_pipe(e); @@ -1252,7 +1252,7 @@ static void recursive_populate_directory(struct filesystem_entry *dir) case S_IFIFO: if (verbose) { printf("\tp %04o %9lu %5d:%-3d %s\n", - e->sb.st_mode & ~S_IFMT, e->sb.st_size, + e->sb.st_mode & ~S_IFMT, (unsigned long) e->sb.st_size, (int) e->sb.st_uid, (int) e->sb.st_gid, e->name); } write_pipe(e); @@ -1281,7 +1281,7 @@ static void recursive_populate_directory(struct filesystem_entry *dir) case S_IFLNK: if (verbose) { printf("\tl %04o %9lu %5d:%-3d %s -> %s\n", - e->sb.st_mode & ~S_IFMT, e->sb.st_size, + e->sb.st_mode & ~S_IFMT, (unsigned long) e->sb.st_size, (int) e->sb.st_uid, (int) e->sb.st_gid, e->name, e->link); } @@ -1293,8 +1293,8 @@ static void recursive_populate_directory(struct filesystem_entry *dir) write_xattr_entry(e); if (verbose) { printf("\tf %04o %9lu (%9u) %5d:%-3d %s\n", - e->sb.st_mode & ~S_IFMT, e->sb.st_size, wrote, - (int) e->sb.st_uid, (int) e->sb.st_gid, e->name); + e->sb.st_mode & ~S_IFMT, (unsigned long) e->sb.st_size, + wrote, (int) e->sb.st_uid, (int) e->sb.st_gid, e->name); } break; default: |