summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-18 20:03:40 +0200
committerwm4 <wm4@nowhere>2013-09-20 21:21:27 +0200
commitc52ca9049298fdca05d636b91112fda2c94cf3e4 (patch)
treeb31023b4ad436b5eacae59de3f6b981ed412f223
parent939d34e8f1a474374eb1730b992ab84e2759b1fe (diff)
downloadmpv-c52ca9049298fdca05d636b91112fda2c94cf3e4.tar.bz2
mpv-c52ca9049298fdca05d636b91112fda2c94cf3e4.tar.xz
af_export: fix compilation warning
Blargh.
-rw-r--r--audio/filter/af_export.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/audio/filter/af_export.c b/audio/filter/af_export.c
index 3a6f808a34..c276d1c3e8 100644
--- a/audio/filter/af_export.c
+++ b/audio/filter/af_export.c
@@ -100,8 +100,7 @@ static int control(struct af_instance* af, int cmd, void* arg)
s->buf[i] = (uint8_t *)s->buf[0] + i*s->sz*af->data->bps;
if (!s->filename) {
- mp_msg(MSGT_AFILTER, MSGL_FATAL, "[export] No filename set.\n",
- s->filename);
+ mp_msg(MSGT_AFILTER, MSGL_FATAL, "[export] No filename set.\n");
return AF_ERROR;
}