From 549669e657aa7a1d43ab35709e259ba9d879e576 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Sun, 21 Dec 2014 22:56:52 +0100 Subject: [PATCH] du: fix eprintf parameter --- du.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/du.c b/du.c index 46151ad..b477da9 100644 --- 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; }