summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiro HronĨok <miro@hroncok.cz>2013-12-22 20:52:17 +0100
committerwm4 <wm4@nowhere>2013-12-22 21:00:15 +0100
commitc31ce789c5058e076b3219d19a0441171add9c08 (patch)
treefc1d6074edbf26c814a9a8175cfa00e0b60e2219
parent79b09592c8a1eb348361c84e2c3835f42e35a224 (diff)
downloadmpv-c31ce789c5058e076b3219d19a0441171add9c08.tar.bz2
mpv-c31ce789c5058e076b3219d19a0441171add9c08.tar.xz
stream_radio: suppress error with -Werror=format-security compilation flag
Signed-off-by: wm4 <wm4@nowhere>
-rw-r--r--stream/stream_radio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_radio.c b/stream/stream_radio.c
index d6d7319ea9..315b28a613 100644
--- a/stream/stream_radio.c
+++ b/stream/stream_radio.c
@@ -864,7 +864,7 @@ static int open_s(stream_t *stream,int mode)
MP_VERBOSE(priv, "\n");
if(priv->driver)
- MP_INFO(priv, priv->driver->info);
+ MP_INFO(priv, "%s", priv->driver->info);
else{
MP_INFO(priv, "Unknown driver name: %s\n",priv->radio_param->driver);
close_s(stream);