aboutsummaryrefslogtreecommitdiff
path: root/squashfs-tools
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@squashfs.org.uk>2013-02-02 17:02:07 +0000
committerPhillip Lougher <phillip@squashfs.org.uk>2013-02-02 17:02:07 +0000
commitfb527f0edf783e34233fe7440e188d430790c6cd (patch)
tree3c7fdf228979a656e2ba2ecf20d0e86579880f3f /squashfs-tools
parente6fd6e125e7d63b871b8320b21b52c96b10063a9 (diff)
downloadsquashfs-tools-fb527f0edf783e34233fe7440e188d430790c6cd.tar.gz
unsquashfs: fix error statement
Forgot to update error message when function was renamed. Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Diffstat (limited to 'squashfs-tools')
-rw-r--r--squashfs-tools/unsquashfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfs-tools/unsquashfs.c b/squashfs-tools/unsquashfs.c
index a9441a8..2a0ee0b 100644
--- a/squashfs-tools/unsquashfs.c
+++ b/squashfs-tools/unsquashfs.c
@@ -1171,7 +1171,7 @@ int read_directory_table(long long start, long long end)
* after reading.
*/
if(start != end && res != SQUASHFS_METADATA_SIZE) {
- ERROR("uncompress_directory_table: metadata block "
+ ERROR("read_directory_table: metadata block "
"should be %d bytes in length, it is %d "
"bytes\n", SQUASHFS_METADATA_SIZE, res);
goto failed;