1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

cast the qsort to prevent warnings

(This used to be commit 55333edd2eed33961ced4eb4b6898f5ca9ca1820)
This commit is contained in:
Andrew Tridgell 1998-08-31 03:13:20 +00:00
parent 61b5fd6f32
commit cc022132a6

View File

@ -950,5 +950,5 @@ void sort_query_replies(char *data, int n, struct in_addr ip)
putip(sort_ip, (char *)&ip);
qsort(data, n, 6, name_query_comp);
qsort(data, n, 6, QSORT_CAST name_query_comp);
}