summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/totem-grilo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/totem-grilo.c b/src/totem-grilo.c
index 98730c402..ba61cec56 100644
--- a/src/totem-grilo.c
+++ b/src/totem-grilo.c
@@ -338,7 +338,7 @@ can_remove (GrlSource *source,
return CAN_REMOVE_FALSE;
scheme = g_uri_parse_scheme (url);
- ret = g_str_equal (scheme, "file") ? CAN_REMOVE_TRUE : CAN_REMOVE_FALSE;
+ ret = (g_strcmp0 (scheme, "file") == 0) ? CAN_REMOVE_TRUE : CAN_REMOVE_FALSE;
g_free (scheme);
if (ret == CAN_REMOVE_TRUE)