From: Alan Cox Date: Sun, 22 Oct 2017 18:45:33 +0000 (+0100) Subject: test: fix silly error when copying fixes over X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=6183d1c667f60bb26e83e280a40aec0d4507ada5;p=FUZIX.git test: fix silly error when copying fixes over --- diff --git a/Applications/MWC/cmd/test.c b/Applications/MWC/cmd/test.c index beafc37b..dbe70fe8 100644 --- a/Applications/MWC/cmd/test.c +++ b/Applications/MWC/cmd/test.c @@ -200,7 +200,7 @@ struct op { const char *op_name; void (*op_func)(void); }; -#define OP(name,func) { name, (void (*)(void *))func } +#define OP(name,func) { name, (void (*)(void))func } const struct op string_binop[] = { OP("=", cmp_eq), OP("!=", cmp_neq), OP("<", cmp_lt),