diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-02 18:52:34 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-04-02 18:55:50 -0400 |
commit | ec226b65e73dcb803c11ae09d869a2a2eae3e2f7 (patch) | |
tree | 7d847b01a893abb43a5a93b66cfd7ed4ba564145 | |
parent | b7c7dd721d101bf24597b8ca1277998e8a798eb2 (diff) | |
download | stasis-ec226b65e73dcb803c11ae09d869a2a2eae3e2f7.tar.gz |
Remove unused variable
-rw-r--r-- | src/strlist.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; } |