summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
diff options
context:
space:
mode:
authornexus <nexus@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-31 10:25:11 +0000
committernexus <nexus@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-31 10:25:11 +0000
commit5276910d701a671a21ce69ceead3c5c25581ac11 (patch)
treea5e4b3d73704da98d6c78aa70dabdf24cd02ec76 /codec-cfg.c
parentf584ec47549da00897a91abded2d28eda02801c9 (diff)
downloadmpv-5276910d701a671a21ce69ceead3c5c25581ac11.tar.bz2
mpv-5276910d701a671a21ce69ceead3c5c25581ac11.tar.xz
fix for imaadpcmacm size
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3919 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'codec-cfg.c')
-rw-r--r--codec-cfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/codec-cfg.c b/codec-cfg.c
index 78fa92d521..0af0c91abe 100644
--- a/codec-cfg.c
+++ b/codec-cfg.c
@@ -710,9 +710,9 @@ void list_codecs(int audioflag){
case CODECS_STATUS_UNTESTED: s="untested";break;
}
if(c->dll)
- printf("%-10s%2d %s %s [%s]\n",c->name,c->driver,s,c->info,c->dll);
+ printf("%-11s%2d %s %s [%s]\n",c->name,c->driver,s,c->info,c->dll);
else
- printf("%-10s%2d %s %s\n",c->name,c->driver,s,c->info);
+ printf("%-11s%2d %s %s\n",c->name,c->driver,s,c->info);
}