mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-28 21:03:29 +02:00
glib/gconvert.c glib/gen-unicode-tables.pl fixed cast/type problems to
2002-03-13 Erwann Chenede <erwann.chenede@sun.com> * glib/gconvert.c * glib/gen-unicode-tables.pl * glib/gunidecomp.h : fixed cast/type problems to avoid warnings (with forte compiler) * gobject/gclosure.c * gobject/gobject.c * gobject/gsignal.c: fixed cast problems with function pointer to avoid warnings (with forte compiler) (#73898)
This commit is contained in:
committed by
Erwann Chenede
parent
428704a0b6
commit
738c1cfd6b
@@ -1168,7 +1168,7 @@ g_object_disconnect (gpointer _object,
|
||||
g_warning ("%s: invalid signal name \"%s\"", G_STRLOC, signal_spec);
|
||||
else if (!g_signal_handlers_disconnect_matched (object, mask | (detail ? G_SIGNAL_MATCH_DETAIL : 0),
|
||||
sid, detail,
|
||||
NULL, callback, data))
|
||||
NULL, (gpointer)callback, data))
|
||||
g_warning (G_STRLOC ": signal handler %p(%p) is not connected", callback, data);
|
||||
signal_spec = va_arg (var_args, gchar*);
|
||||
}
|
||||
|
Reference in New Issue
Block a user