summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-18 20:03:40 +0200
committerwm4 <wm4@nowhere>2013-09-19 14:30:53 +0200
commit69e272dad707aae1ae99dabdf45bb82d3bf7a905 (patch)
tree123100c835606588b973554aebbd26c638f76174 /audio
parent4a9f618d9f3b2d964bcc819426cc3042b8e447f7 (diff)
downloadmpv-69e272dad707aae1ae99dabdf45bb82d3bf7a905.tar.bz2
mpv-69e272dad707aae1ae99dabdf45bb82d3bf7a905.tar.xz
af_export: fix compilation warning
Blargh.
Diffstat (limited to 'audio')
-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;
}