diff options
author | Svante Signell <svante.signell@gmail.com> | 2023-01-19 00:51:33 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-19 00:51:33 +0100 |
commit | bf721cfb73ffcf887d4e33a9338789bd56281f79 (patch) | |
tree | 3e45e819259966a15c632974cc92cf43c4036a88 /ext2fs/ext2fs.c | |
parent | 8fa6ecf56293bdc4b5a29994a389c7dce4038917 (diff) | |
download | hurd-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.c | 2 |
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 (); |