diff options
Diffstat (limited to 'bin/rdsquashfs')
-rw-r--r-- | bin/rdsquashfs/rdsquashfs.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/bin/rdsquashfs/rdsquashfs.c b/bin/rdsquashfs/rdsquashfs.c index 8926df6..206b754 100644 --- a/bin/rdsquashfs/rdsquashfs.c +++ b/bin/rdsquashfs/rdsquashfs.c @@ -72,11 +72,17 @@ static int tree_sort(sqfs_tree_node_t *root) if (strcmp((const char *)it->name, (const char *)it->next->name) == 0) { char *path; + int ret; - sqfs_tree_node_get_path(it, &path); + ret = sqfs_tree_node_get_path(it, &path); - fprintf(stderr, "Entry '%s' found more than once!\n", - path); + if (ret == 0) { + fprintf(stderr, + "Entry '%s' found more than once!\n", + path); + } else { + fputs("Entry found more than once!\n", stderr); + } sqfs_free(path); return -1; |