summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--audio/out/ao_pcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/out/ao_pcm.c b/audio/out/ao_pcm.c
index 1e8a0adf75..649c7072b1 100644
--- a/audio/out/ao_pcm.c
+++ b/audio/out/ao_pcm.c
@@ -149,8 +149,8 @@ static int init(struct ao *ao)
priv->outputfilename,
priv->waveheader ? "WAVE" : "RAW PCM", ao->samplerate,
ao->channels.num, af_fmt_to_str(ao->format));
- MP_INFO(ao, "Info: Faster dumping is achieved with -no-video\n");
- MP_INFO(ao, "Info: To write WAVE files use -ao pcm:waveheader (default).\n");
+ MP_INFO(ao, "Info: Faster dumping is achieved with --no-video\n");
+ MP_INFO(ao, "Info: To write WAVE files use --ao=pcm:waveheader (default).\n");
priv->fp = fopen(priv->outputfilename, "wb");
if (!priv->fp) {