forked from lix-project/lix
* Fix broken format string.
This commit is contained in:
parent
d6db574ec1
commit
92ee003dc9
|
@ -171,7 +171,7 @@ static void _deletePath(const Path & path)
|
||||||
/* Make the directory writable. */
|
/* Make the directory writable. */
|
||||||
if (!(st.st_mode & S_IWUSR)) {
|
if (!(st.st_mode & S_IWUSR)) {
|
||||||
if (chmod(path.c_str(), st.st_mode | S_IWUSR) == -1)
|
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)
|
for (Strings::iterator i = names.begin(); i != names.end(); ++i)
|
||||||
|
|
Loading…
Reference in a new issue