From: Eric Biggers Date: Sun, 12 Jan 2014 22:55:30 +0000 (-0600) Subject: read_dentry_tree(): Fix typo in error message X-Git-Tag: v1.6.1~64 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=0ddd8e57f633908c771b606cc606f434c15ac832 read_dentry_tree(): Fix typo in error message --- diff --git a/src/dentry.c b/src/dentry.c index b18375fe..af363c45 100644 --- a/src/dentry.c +++ b/src/dentry.c @@ -2237,7 +2237,7 @@ read_dentry_tree(const u8 * restrict metadata_resource, for (parent = dentry->parent; !dentry_is_root(parent); parent = parent->parent) { if (unlikely(parent->subdir_offset == cur_offset)) { - ERROR("Cyclic directory structure directed: children " + ERROR("Cyclic directory structure detected: children " "of \"%"TS"\" coincide with children of \"%"TS"\"", dentry_full_path(dentry), dentry_full_path(parent));