summaryrefslogtreecommitdiff
path: root/mkfs.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-06-12 08:08:04 -0400
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-06-12 08:08:04 -0400
commit38ef945266758856bf11e385eadaa0872b6d8b30 (patch)
treed33ea2dd8fb941806351f3567fa981f718f95d1b /mkfs.c
parentb53a236c3eea3ce01a0054c249cb0b974b9568c6 (diff)
printf cleanups
Diffstat (limited to 'mkfs.c')
-rw-r--r--mkfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkfs.c b/mkfs.c
index 4acadff9..925cede8 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -369,8 +369,8 @@ int main(int ac, char **av)
fprintf(stderr, "failed to setup the root directory\n");
exit(1);
}
- printf("fs created on %s blocksize %d blocks %Lu\n",
- file, 4096, block_count);
+ printf("fs created on %s blocksize %d blocks %llu\n",
+ file, 4096, (unsigned long long)block_count);
return 0;
}