From: David Given Date: Fri, 16 Dec 2016 22:23:41 +0000 (+0100) Subject: Fix warning. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=38741611d5f097906461d3b6da38aa5374d286f0;p=ack.git Fix warning. --- diff --git a/mach/proto/mcg/data.c b/mach/proto/mcg/data.c index a237d5a2c..f326dc19c 100644 --- a/mach/proto/mcg/data.c +++ b/mach/proto/mcg/data.c @@ -90,7 +90,7 @@ void data_float(const char* data, size_t size, bool is_ro) fprintf(outputfile, "\n"); } -static bool istext(c) +static bool istext(char c) { return isprint(c) && (c != '"'); }