diff options
-rw-r--r-- | src/ephy-lockdown.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ephy-lockdown.c b/src/ephy-lockdown.c index 97d33b4dc..7b0bfb9c8 100644 --- a/src/ephy-lockdown.c +++ b/src/ephy-lockdown.c @@ -33,7 +33,6 @@ #include "ephy-settings.h" #include <gtk/gtk.h> -#include <string.h> #define LOCKDOWN_FLAG 1 << 8 @@ -41,7 +40,7 @@ static int find_name (GtkActionGroup *action_group, const char *name) { - return strcmp (gtk_action_group_get_name (action_group), name); + return g_strcmp0 (gtk_action_group_get_name (action_group), name); } static GtkActionGroup * |