From f96aa3ccf0fbb0e659e475d9ce9536b913067657 Mon Sep 17 00:00:00 2001 From: Andy Shevchenko Date: Wed, 13 Apr 2011 16:20:25 +0300 Subject: 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 Signed-off-by: Artem Bityutskiy --- mkfs.jffs2.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mkfs.jffs2.c') 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: -- cgit v1.2.3