File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -419,10 +419,10 @@ simple_string_list_member(SimpleStringList *list, const char *val)
419
419
420
420
/* Returns the number of elements in the given SimpleStringList */
421
421
size_t
422
- simple_string_list_size (SimpleStringList string_list )
422
+ simple_string_list_size (SimpleStringList list )
423
423
{
424
424
size_t i = 0 ;
425
- SimpleStringListCell * cell = string_list .head ;
425
+ SimpleStringListCell * cell = list .head ;
426
426
427
427
while (cell )
428
428
{
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ typedef struct SimpleStringList
186
186
187
187
extern void simple_string_list_append (SimpleStringList * list , const char * val );
188
188
extern bool simple_string_list_member (SimpleStringList * list , const char * val );
189
- extern size_t simple_string_list_size (SimpleStringList string_list );
189
+ extern size_t simple_string_list_size (SimpleStringList list );
190
190
191
191
192
192
/*
You can’t perform that action at this time.
0 commit comments