From: Olivier Matz Date: Sat, 22 Feb 2020 21:19:07 +0000 (+0100) Subject: fix warning, remove const X-Git-Url: http://git.droids-corp.org/?p=protos%2Flibecoli.git;a=commitdiff_plain;h=74ce3d6a8a834a003bff84a8cd6344a94dade895 fix warning, remove const --- diff --git a/src/ecoli_test.c b/src/ecoli_test.c index 4ec4d7b..541ae01 100644 --- a/src/ecoli_test.c +++ b/src/ecoli_test.c @@ -129,7 +129,7 @@ int ec_test_check_complete(struct ec_node *tk, enum ec_comp_type type, ...) for (s = va_arg(ap, const char *); s != EC_VA_END; s = va_arg(ap, const char *)) { - const struct ec_comp_item *item; + struct ec_comp_item *item; if (s == NULL) { ret = -1;