mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
gstpythonplugin: Use strcmp for old glib. Fixes #579383
This commit is contained in:
parent
ec692ee329
commit
7120588675
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue