From 5225f5cc16d9a1a2c99ff2ac7449efdc5154c0d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 9 Aug 2010 00:31:15 +0100 Subject: [PATCH] x264: fix printf format warning in debug message --- ext/x264/gstx264enc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/x264/gstx264enc.c b/ext/x264/gstx264enc.c index 131fb710d5..70e398194c 100644 --- a/ext/x264/gstx264enc.c +++ b/ext/x264/gstx264enc.c @@ -1035,9 +1035,9 @@ gst_x264_enc_init_encoder (GstX264Enc * encoder) encoder->option_string->str); if (gst_x264_enc_parse_options (encoder, encoder->option_string->str) == FALSE) { - GST_DEBUG_OBJECT (encoder, - "Failed to parse internal option string. This could be due to use of an " - "old libx264 version.", encoder->option_string->str); + GST_DEBUG_OBJECT (encoder, "Failed to parse internal option string. " + "This could be due to use of an old libx264 version. Option string " + "was: %s", encoder->option_string->str); } }