test: fix silly error when copying fixes over
authorAlan Cox <alan@linux.intel.com>
Sun, 22 Oct 2017 18:45:33 +0000 (19:45 +0100)
committerAlan Cox <alan@linux.intel.com>
Sun, 22 Oct 2017 18:45:33 +0000 (19:45 +0100)
Applications/MWC/cmd/test.c

index beafc37..dbe70fe 100644 (file)
@@ -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),