Fix build error
authorMike Gorse <mgorse@novell.com>
Mon, 11 Jan 2010 18:04:30 +0000 (13:04 -0500)
committerMike Gorse <mgorse@novell.com>
Mon, 11 Jan 2010 18:04:30 +0000 (13:04 -0500)
Use g_strcmp0 rather than strcmp, since there was no #include for strcmp.

atk-adaptor/accessible-cache.c

index c7e27f9..c449657 100644 (file)
@@ -312,7 +312,7 @@ child_added_listener (GSignalInvocationHint * signal_hint,
       if (signal_hint->detail)
         detail = g_quark_to_string (signal_hint->detail);
 
-      if (!strcmp (detail, "add"))
+      if (!g_strcmp0 (detail, "add"))
         {
           gpointer child;
           int index = g_value_get_uint (param_values + 1);