summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Clark <rob@ti.com>2010-03-15 17:29:34 -0500
committerFelipe Contreras <felipe.contreras@nokia.com>2010-04-16 17:21:41 +0300
commit099c6febe3d7e8772cd142e7793be74500620da0 (patch)
tree9c71e6227bad54e88a6822a27aef014829997375
parent6b238cfa0db6437da40fbc0c845110a9672dcc58 (diff)
basefilter: small fix for compile error
omx/gstomx_base_filter.c:763: warning: format not a string literal and no format arguments Signed-off-by: Felipe Contreras <felipe.contreras@nokia.com>
-rw-r--r--omx/gstomx_base_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/gstomx_base_filter.c b/omx/gstomx_base_filter.c
index 2d93f5c..7ebc52d 100644
--- a/omx/gstomx_base_filter.c
+++ b/omx/gstomx_base_filter.c
@@ -716,7 +716,7 @@ out_flushing:
if (error_msg)
{
- GST_ELEMENT_ERROR (self, STREAM, FAILED, (NULL), (error_msg));
+ GST_ELEMENT_ERROR (self, STREAM, FAILED, (NULL), ("%s", error_msg));
ret = GST_FLOW_ERROR;
}