From ec226b65e73dcb803c11ae09d869a2a2eae3e2f7 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 2 Apr 2024 18:52:34 -0400 Subject: Remove unused variable --- src/strlist.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/strlist.c b/src/strlist.c index f0c616e..d54ed06 100644 --- a/src/strlist.c +++ b/src/strlist.c @@ -301,7 +301,6 @@ size_t strlist_count(struct StrList *pStrList) { */ void strlist_set(struct StrList **pStrList, size_t index, char *value) { char *tmp = NULL; - char *item = NULL; if (*pStrList == NULL || index > strlist_count(*pStrList)) { return; } -- cgit