summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 09:05:09 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 09:05:54 +0200
commit71205886758fcfc5e2c907b1338f279464b173f6 (patch)
tree68e8e725ebc5f6fd59c2b5d987dc1c175fad0ae0
parentec692ee329032d5764b37ae3cfcceefaa86a17ac (diff)
gstpythonplugin: Use strcmp for old glib. Fixes #579383
-rw-r--r--plugin/gstpythonplugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/gstpythonplugin.c b/plugin/gstpythonplugin.c
index a090e40..08ba11a 100644
--- a/plugin/gstpythonplugin.c
+++ b/plugin/gstpythonplugin.c
@@ -278,7 +278,7 @@ pygst_require (gchar * version)
/* We don't want the registry to be loaded when we import gst */
if ((regupd = g_getenv ("GST_REGISTRY_UPDATE"))
- && (!g_strcmp0 (regupd, "no")))
+ && (!strcmp (regupd, "no")))
doupdate = FALSE;
g_setenv ("GST_REGISTRY_UPDATE", "no", TRUE);