cleanup error string

This commit is contained in:
Isaac Connor
2019-01-15 11:36:13 -05:00
parent 0e06bdd1f2
commit 34224a957b

View File

@@ -422,7 +422,7 @@ void touch(const char *pathname) {
0666);
if ( fd < 0 ) {
// Couldn't open that path.
Error("Couldn't open() path \"%s in touch", pathname);
Error("Couldn't open() path %s in touch", pathname);
return;
}
int rc = utimensat(AT_FDCWD,