From 0ddd8e57f633908c771b606cc606f434c15ac832 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 12 Jan 2014 16:55:30 -0600 Subject: [PATCH 1/1] read_dentry_tree(): Fix typo in error message --- src/dentry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.43.0