mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-09 18:54:04 +02:00
gqsort: Quiet a compiler warning for qsort_r
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user