aboutsummaryrefslogtreecommitdiff
path: root/ext2fs/ext2fs.c
diff options
context:
space:
mode:
authorSvante Signell <svante.signell@gmail.com>2023-01-19 00:51:33 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-19 00:51:33 +0100
commitbf721cfb73ffcf887d4e33a9338789bd56281f79 (patch)
tree3e45e819259966a15c632974cc92cf43c4036a88 /ext2fs/ext2fs.c
parent8fa6ecf56293bdc4b5a29994a389c7dce4038917 (diff)
downloadhurd-bf721cfb73ffcf887d4e33a9338789bd56281f79.tar.gz
hurd-bf721cfb73ffcf887d4e33a9338789bd56281f79.tar.bz2
hurd-bf721cfb73ffcf887d4e33a9338789bd56281f79.zip
Fix some compiler warnings
Diffstat (limited to 'ext2fs/ext2fs.c')
-rw-r--r--ext2fs/ext2fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c
index 5beb3906..14952d7d 100644
--- a/ext2fs/ext2fs.c
+++ b/ext2fs/ext2fs.c
@@ -233,7 +233,7 @@ main (int argc, char **argv)
ext2_panic ("device too small for superblock (%Ld bytes)", store->size);
if (store->log2_blocks_per_page < 0)
ext2_panic ("device block size (%zu) greater than page size (%lu)",
- store->block_size, vm_page_size);
+ store->block_size, (unsigned long)vm_page_size);
/* Map the entire disk. */
create_disk_pager ();