summaryrefslogtreecommitdiffstats
path: root/libao2/pl_format.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-27 19:43:13 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-27 19:43:13 +0000
commit91aae0d5386829c4ae7442aed677506cd92f0247 (patch)
tree7ce9e8bfb3f74d8308fe828ac0d5db1f85258fa1 /libao2/pl_format.c
parent0fdaa5ab30c0da6f9005a72e8e35b2c6cba00a49 (diff)
downloadmpv-91aae0d5386829c4ae7442aed677506cd92f0247.tar.bz2
mpv-91aae0d5386829c4ae7442aed677506cd92f0247.tar.xz
100l, buf etc. in af_fmt2str call are already pointers...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14256 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2/pl_format.c')
-rw-r--r--libao2/pl_format.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libao2/pl_format.c b/libao2/pl_format.c
index 46ddaaa6a6..6c0921179f 100644
--- a/libao2/pl_format.c
+++ b/libao2/pl_format.c
@@ -137,8 +137,8 @@ static int init(){
// Tell the world what we are up to
printf("[pl_format] Input format: %s, output format: %s \n",
- af_fmt2str(ao_plugin_data.format, &buf1, 128),
- af_fmt2str(ao_plugin_cfg.pl_format_type, &buf2, 128));
+ af_fmt2str(ao_plugin_data.format, buf1, 128),
+ af_fmt2str(ao_plugin_cfg.pl_format_type, buf2, 128));
// We are changing the format
ao_plugin_data.format=ao_plugin_cfg.pl_format_type;