Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jhunkeler committed Apr 2, 2024
1 parent b7c7dd7 commit ec226b6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/strlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit ec226b6

Please sign in to comment.