fixed extra bracket

This commit is contained in:
Maximilian Röhrle 2018-10-15 07:05:02 +02:00 committed by GitHub
parent d115953347
commit 226b34d546
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -351,7 +351,7 @@ static int do_dump(const json_t *json, size_t flags, int depth,
}
assert(i == size);
qsort((keys, size, sizeof(const char *), compare_keys);
qsort(keys, size, sizeof(const char *), compare_keys);
for(i = 0; i < size; i++)
{