Fix compiler warning in sqlite_custom module

This commit is contained in:
Kovid Goyal 2017-08-23 08:01:03 +05:30
parent 90999636f9
commit c04c82c7cf
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -86,7 +86,7 @@ static int sort_concat_cmp(const void *a_, const void *b_) {
static unsigned char* sort_concat_do_finalize(SortConcatList *list, const unsigned char join) {
unsigned char *ans, *pos;
int sz = 0, i;
unsigned int sz = 0, i;
for (i = 0; i < list->count; i++) {
sz += list->vals[i]->length;