mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 15:03:39 +02:00
gobject: Fix a compiler warning
Shuffle the parenthesis around.
This commit is contained in:
@@ -3160,7 +3160,7 @@ g_signal_emit_valist (gpointer instance,
|
||||
|
||||
/* Don't allow no-recurse emission as we might have to restart, which means
|
||||
we will run multiple handlers and thus must ref all arguments */
|
||||
if (closure != NULL && (node->flags & (G_SIGNAL_NO_RECURSE) != 0))
|
||||
if (closure != NULL && (node->flags & (G_SIGNAL_NO_RECURSE)) != 0)
|
||||
fastpath = FALSE;
|
||||
|
||||
if (fastpath)
|
||||
|
Reference in New Issue
Block a user