diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-22 03:23:48 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-22 04:08:13 +0100 |
commit | 9eae8396f1f6391b719f26ef8e4711ef3ea1cbb2 (patch) | |
tree | b4ca5db26866ddd203f0eef2b17642bbdfde8d2b | |
parent | 3bd02db96f68f94de68988fd258fcec46c392c30 (diff) | |
download | ffmpeg-9eae8396f1f6391b719f26ef8e4711ef3ea1cbb2.tar.gz |
cmdutils: restore vertical alignment of versions
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | cmdutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c index e3497a2ea4..e072d75970 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -550,7 +550,7 @@ static int warned_cfg = 0; const char *indent = flags & INDENT? " " : ""; \ if (flags & SHOW_VERSION) { \ unsigned int version = libname##_version(); \ - av_log(NULL, level, "%slib%-9s %2d.%3d.%2d / %2d.%3d.%2d\n",\ + av_log(NULL, level, "%slib%-11s %2d.%3d.%3d / %2d.%3d.%3d\n",\ indent, #libname, \ LIB##LIBNAME##_VERSION_MAJOR, \ LIB##LIBNAME##_VERSION_MINOR, \ |