From 4d0a62805708a6d3fe21f615ccfaa3964adbf259 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 25 Jun 2021 14:30:31 +0200 Subject: Fix format string type/signedness mismatch issues Signed-off-by: David Oberhollenzer --- bin/rdsquashfs/describe.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/rdsquashfs/describe.c') diff --git a/bin/rdsquashfs/describe.c b/bin/rdsquashfs/describe.c index 5107f95..e0e22bc 100644 --- a/bin/rdsquashfs/describe.c +++ b/bin/rdsquashfs/describe.c @@ -53,7 +53,8 @@ static int print_name(const sqfs_tree_node_t *n, bool dont_escape) static void print_perm(const sqfs_tree_node_t *n) { - printf(" 0%o %d %d", n->inode->base.mode & (~S_IFMT), n->uid, n->gid); + printf(" 0%o %u %u", (unsigned int)n->inode->base.mode & (~S_IFMT), + n->uid, n->gid); } static int print_simple(const char *type, const sqfs_tree_node_t *n, @@ -112,7 +113,7 @@ int describe_tree(const sqfs_tree_node_t *root, const char *unpack_root) devno = root->inode->data.dev.devno; } - sprintf(buffer, "%c %d %d", + sprintf(buffer, "%c %u %u", S_ISCHR(root->inode->base.mode) ? 'c' : 'b', major(devno), minor(devno)); return print_simple("nod", root, buffer); -- cgit v1.2.3