src/flac/main.c : Fix an output line > 81 characters in length.

Requested-by: lvqcl <lvqcl.mail@gmail.com>
This commit is contained in:
Erik de Castro Lopo 2014-12-04 21:01:19 +11:00
parent 7b757e46f2
commit d03c9f46be

View File

@ -479,7 +479,8 @@ int do_it(void)
}
flac__utils_printf(stderr, 2, "\n");
flac__utils_printf(stderr, 2, "flac %s, Copyright (C) 2000-2009 Josh Coalson, 2011-2014 Xiph.Org Foundation\n", FLAC__VERSION_STRING);
flac__utils_printf(stderr, 2, "flac %s\n", FLAC__VERSION_STRING);
flac__utils_printf(stderr, 2, "Copyright (C) 2000-2009 Josh Coalson, 2011-2014 Xiph.Org Foundation\n");
flac__utils_printf(stderr, 2, "flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are\n");
flac__utils_printf(stderr, 2, "welcome to redistribute it under certain conditions. Type `flac' for details.\n\n");