mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 15:33:39 +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,
|
||||
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
|
||||
|
Reference in New Issue
Block a user