summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis.bg@samsung.com>2015-03-03 13:51:01 +0000
committerLuis de Bethencourt <luis.bg@samsung.com>2015-03-03 13:53:11 +0000
commitd92ff17026598ce6c58fb16f7a475c18f34b5b54 (patch)
tree792f5740f63ae0a19292425bf4397a3a042454fb
parentb04856f0cf7960ce8ed863bca7aa0ab5a233ff9b (diff)
examples: test-uri: fix tainted variable
Insignificant but this keeps Coverity happy. CID #1268404
-rw-r--r--examples/test-uri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test-uri.c b/examples/test-uri.c
index acea862..8a9c56c 100644
--- a/examples/test-uri.c
+++ b/examples/test-uri.c
@@ -61,7 +61,7 @@ remove_map (GstRTSPServer * server)
#endif
int
-main (int argc, char *argv[])
+main (int argc, gchar * argv[])
{
GMainLoop *loop;
GstRTSPServer *server;