From d92ff17026598ce6c58fb16f7a475c18f34b5b54 Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Tue, 3 Mar 2015 13:51:01 +0000 Subject: [PATCH] examples: test-uri: fix tainted variable Insignificant but this keeps Coverity happy. CID #1268404 --- examples/test-uri.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4