From 74ce3d6a8a834a003bff84a8cd6344a94dade895 Mon Sep 17 00:00:00 2001
From: Olivier Matz <zer0@droids-corp.org>
Date: Sat, 22 Feb 2020 22:19:07 +0100
Subject: [PATCH] fix warning, remove const

---
 src/ecoli_test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-- 
2.39.5