From 7ebf02d749a0858981a1c8f38610cb7a0ba0ebb3 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 27 Mar 2015 17:08:25 +0100 Subject: [PATCH] find: fgetc() returns int --- find.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/find.c b/find.c index 512bd36..b0f8a93 100644 --- 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);