From 92ee003dc985e6f8331270068b10ca52e9cef793 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 8 Nov 2004 15:20:52 +0000 Subject: [PATCH] * Fix broken format string. --- src/libutil/util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 5a41c09865..266ab67f04 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -171,7 +171,7 @@ static void _deletePath(const Path & path) /* Make the directory writable. */ if (!(st.st_mode & S_IWUSR)) { if (chmod(path.c_str(), st.st_mode | S_IWUSR) == -1) - throw SysError(format("making `%1%' writable")); + throw SysError(format("making `%1%' writable") % path); } for (Strings::iterator i = names.begin(); i != names.end(); ++i)