summaryrefslogtreecommitdiff
path: root/ext/ladspa
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-02-05 23:53:17 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2019-02-06 00:10:28 +0530
commitfffb2aa12f1c9844a60bd58d43407f8ccfc2dbb0 (patch)
tree983c23c2af7561b3c038860d8b803acecb7212e4 /ext/ladspa
parent6c953438f5ad9ab78114bf3d9e5a6e9b1d913b80 (diff)
downloadgstreamer-plugins-bad-fffb2aa12f1c9844a60bd58d43407f8ccfc2dbb0.tar.gz
misc: Fix warnings on Cerbero MinGW
gstladspa.c:360:5: error: zero-length ms_printf format string [-Werror=format-zero-length] vad_private.c:108:3: error: this decimal constant is unsigned only in ISO C90 [-Werror] gstdecklinkvideosink.cpp:478:32: error: comparison between 'BMDTimecodeFormat {aka enum _BMDTimecodeFormat}' and 'enum GstDecklinkTimecodeFormat' [-Werror=enum-compare] win/DeckLinkAPI_i.c:72:8: error: extra tokens at end of #endif directive [-Werror] win/DeckLinkAPIDispatch.cpp:35:10: error: unused variable 'res' [-Werror=unused-variable] gstwasapiutil.c:733:3: error: format '%x' expects argument of type 'unsigned int', but argument 8 has type 'DWORD' [-Werror=format] gstwasapiutil.c:733:3: error: format '%x' expects argument of type 'unsigned int', but argument 9 has type 'guint64' [-Werror=format] kshelpers.c:446:3: error: missing braces around initializer [-Werror=missing-braces] kshelpers.c:446:3: error: (near initialization for 'known_property_sets[0].guid.Data4') [-Werror=missing-braces]
Diffstat (limited to 'ext/ladspa')
-rw-r--r--ext/ladspa/gstladspa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c
index 486fe6231..2acd70f72 100644
--- a/ext/ladspa/gstladspa.c
+++ b/ext/ladspa/gstladspa.c
@@ -357,7 +357,7 @@ ladspa_plugin_path_search (GstPlugin * plugin)
g_string_append_printf (ladspa_path,
"%s" G_SEARCHPATH_SEPARATOR_S GST_LADSPA_DEFAULT_PATH, search_path);
} else {
- g_string_append_printf (ladspa_path, GST_LADSPA_DEFAULT_PATH);
+ g_string_append (ladspa_path, GST_LADSPA_DEFAULT_PATH);
}
#ifdef G_OS_WIN32