From 32600b48a207c0a43679ea437782fa22d3565c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Gonzalez?= Date: Mon, 4 May 2020 16:51:19 +0000 Subject: [PATCH] plugin: Fix typo with GStremaer version: ``` has incompatible version (plugin: 1.15, gst: 1,12) ``` Part-of: --- gst/gstplugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstplugin.c b/gst/gstplugin.c index 9458562e8d..eefd4ae0cb 100644 --- a/gst/gstplugin.c +++ b/gst/gstplugin.c @@ -489,7 +489,7 @@ gst_plugin_register_func (GstPlugin * plugin, const GstPluginDesc * desc, if (!gst_plugin_check_version (desc->major_version, desc->minor_version)) { if (GST_CAT_DEFAULT) GST_WARNING ("plugin \"%s\" has incompatible version " - "(plugin: %d.%d, gst: %d,%d), not loading", + "(plugin: %d.%d, gst: %d.%d), not loading", GST_STR_NULL (plugin->filename), desc->major_version, desc->minor_version, GST_VERSION_MAJOR, GST_VERSION_MINOR); return NULL;