msvcrt/tests: Make qsort_comp() static.

This commit is contained in:
Francois Gouget 2014-05-22 11:25:13 +02:00 committed by Alexandre Julliard
parent ee13e10cf6
commit df5cd21ff6

View file

@ -368,7 +368,7 @@ struct qsort_test
} cmp[64];
};
int __cdecl qsort_comp(void *ctx, const void *l, const void *r)
static int __cdecl qsort_comp(void *ctx, const void *l, const void *r)
{
struct qsort_test *qt = ctx;