From 589beda5d919037310793d9751c7be8e3d0521a1 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 10 Mar 2022 23:17:20 +0100 Subject: Fix: use correct printf specifier for 64bit types Signed-off-by: David Oberhollenzer --- bin/rdsquashfs/stat.c | 6 ++++-- extras/browse.c | 9 ++++++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/bin/rdsquashfs/stat.c b/bin/rdsquashfs/stat.c index ae6e10b..8b4581f 100644 --- a/bin/rdsquashfs/stat.c +++ b/bin/rdsquashfs/stat.c @@ -130,8 +130,10 @@ int stat_file(const sqfs_tree_node_t *node) printf("Fragment offset: %u\n", frag_offset); printf("File size: %lu\n", (unsigned long)size); - if (inode->base.type == SQFS_INODE_EXT_FILE) - printf("Sparse: %lu\n", inode->data.file_ext.sparse); + if (inode->base.type == SQFS_INODE_EXT_FILE) { + printf("Sparse: " PRI_U64 "\n", + inode->data.file_ext.sparse); + } printf("Blocks start: %lu\n", (unsigned long)location); printf("Block count: %lu\n", diff --git a/extras/browse.c b/extras/browse.c index fe5bfd8..2899ba5 100644 --- a/extras/browse.c +++ b/extras/browse.c @@ -14,6 +14,7 @@ #include "sqfs/block.h" #include "sqfs/dir.h" #include "sqfs/io.h" +#include "compat.h" #include #include @@ -353,7 +354,7 @@ static void stat_cmd(const char *filename) } break; case SQFS_INODE_EXT_FILE: - printf("Blocks start: %lu\n", + printf("Blocks start: " PRI_U64 "\n", inode->data.file_ext.blocks_start); printf("Block count: %lu\n", (unsigned long)sqfs_inode_get_file_block_count(inode)); @@ -361,8 +362,10 @@ static void stat_cmd(const char *filename) inode->data.file_ext.fragment_idx); printf("Fragment offset: %u\n", inode->data.file_ext.fragment_offset); - printf("File size: %lu\n", inode->data.file_ext.file_size); - printf("Sparse: %lu\n", inode->data.file_ext.sparse); + printf("File size: " PRI_U64 "\n", + inode->data.file_ext.file_size); + printf("Sparse: " PRI_U64 "\n", + inode->data.file_ext.sparse); printf("Hard link count: %u\n", inode->data.file_ext.nlink); printf("Xattr index: 0x%X\n", inode->data.file_ext.xattr_idx); -- cgit v1.2.3