sbase

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

commit 3d8d796a952fdc0e6d5beb66d354c5386f0fd594
parent 549669e657aa7a1d43ab35709e259ba9d879e576
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun, 21 Dec 2014 23:14:39 +0100

unexpand: fix eprintf

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

diff --git a/unexpand.c b/unexpand.c @@ -27,7 +27,7 @@ main(int argc, char *argv[]) case 't': tabsize = estrtol(EARGF(usage()), 0); if (tabsize <= 0) - eprintf("unexpand: invalid tabsize\n", argv[0]); + eprintf("unexpand: invalid tabsize\n"); /* Fallthrough: -t implies -a */ case 'a': aflag = 1;