sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit 549669e657aa7a1d43ab35709e259ba9d879e576
parent 83e94e922e688c4b090d96214651e687eb449654
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun, 21 Dec 2014 22:56:52 +0100

du: fix eprintf parameter

Diffstat:
Mdu.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/du.c b/du.c @@ -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; }