du: fix eprintf parameter

This commit is contained in:
Hiltjo Posthuma 2014-12-21 22:56:52 +01:00 committed by sin
parent 83e94e922e
commit 549669e657
1 changed files with 1 additions and 1 deletions

2
du.c
View File

@ -37,7 +37,7 @@ xrealpath(const char *pathname, char *resolved)
r = realpath(pathname, resolved);
if (!r)
eprintf("realpath: %s:");
eprintf("realpath: %s:", pathname);
return r;
}