summaryrefslogtreecommitdiff
path: root/mkfs.c
diff options
context:
space:
mode:
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;
}