From 38741611d5f097906461d3b6da38aa5374d286f0 Mon Sep 17 00:00:00 2001 From: David Given Date: Fri, 16 Dec 2016 23:23:41 +0100 Subject: [PATCH] Fix warning. --- mach/proto/mcg/data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 != '"'); } -- 2.34.1