mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 17:56:17 +01:00
gqsort: Quiet a compiler warning for qsort_r
This commit is contained in:
parent
14bb138d58
commit
98365dff73
@ -63,7 +63,7 @@ g_qsort_with_data (gconstpointer pbase,
|
|||||||
GCompareDataFunc compare_func,
|
GCompareDataFunc compare_func,
|
||||||
gpointer user_data)
|
gpointer user_data)
|
||||||
{
|
{
|
||||||
qsort_r (pbase, total_elems, size, compare_func, user_data);
|
qsort_r ((gpointer)pbase, total_elems, size, compare_func, user_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user