Amisha Chhajed [off-list ref] writes:
quoted
quoted
+ for (int i = 0; i < strings_to_insert.nr; i++) {
As strings_to_insert.nr is of type size_t, even though int is plenty
large enough in practice, the compiler will complain.
quoted
+ string_list_insert(&list, strings_to_insert.items[i].string);
+ }
Also, lose the {} around a single statement block.
Done, Thanks for the review.
Heh, that wasn't even a review but a knee-jerk reaction to compiler
warnings.