fix(query): fix syntax error on windows.

This commit is contained in:
Haojun Liao 2023-01-29 13:44:30 +08:00
parent ef8b68bc80
commit 995b75f77f
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void swapStr(char* j, char* J, int width) {
} }
#endif #endif
int32_t qsortHelper(const void* p1, const void* p2, const void* param) { int qsortHelper(const void* p1, const void* p2, const void* param) {
__compar_fn_t comparFn = param; __compar_fn_t comparFn = param;
return comparFn(p1, p2); return comparFn(p1, p2);
} }