sbase

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

commit ac012408000e7f83831569b3f74c78b5c491a885
parent f919f2f2a401695eeb5d2e672852f4077390099c
Author: FRIGN <dev@frign.de>
Date:   Mon, 16 Mar 2015 10:36:36 +0100

Small style-fix in cat.c

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

diff --git a/cat.c b/cat.c @@ -25,7 +25,7 @@ main(int argc, char *argv[]) usage(); } ARGEND; - if (argc == 0) { + if (!argc) { concat(stdin, "<stdin>", stdout, "<stdout>"); } else { for (; *argv; argc--, argv++) {