diff options
author | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2018-09-08 16:43:37 +0200 |
---|---|---|
committer | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2018-09-08 16:43:37 +0200 |
commit | b6bf6a1fb863acd4275bbc5670f4918b80edea4e (patch) | |
tree | 4113a277ea828ee0b9a397e35f587c98674fe4b6 | |
parent | ee36104279f55c26a0ec71abbe8cccbbd0bc3966 (diff) |
Add missing argument to "Failed to get metadata for %s\n" message.
-rw-r--r-- | src/metastore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/metastore.c b/src/metastore.c index e262a18..d85f0bc 100644 --- a/src/metastore.c +++ b/src/metastore.c @@ -365,7 +365,7 @@ fixup_emptydirs(void) new = mentry_create(cur->path); if (!new) { - msg(MSG_QUIET, "Failed to get metadata for %s\n"); + msg(MSG_QUIET, "Failed to get metadata for %s\n", cur->path); continue; } |