sbase

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

commit 7ebf02d749a0858981a1c8f38610cb7a0ba0ebb3
parent a9bedca038090957ffdffa22d757df3ff6e86960
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri, 27 Mar 2015 17:08:25 +0100

find: fgetc() returns int

Diffstat:
Mfind.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/find.c b/find.c @@ -406,9 +406,9 @@ pri_exec(struct arg *arg) static int pri_ok(struct arg *arg) { - int status; + int status, reply; pid_t pid; - char ***brace, reply, buf[256]; + char ***brace, buf[256]; struct okarg *o = arg->extra.p; fprintf(stderr, "%s: %s ?", *o->argv, arg->path);