cwebp.c: fix a missing \n

+ lot more coverage of exotic options and combinations

Change-Id: I4d8e571a6d94023af9848a2bbd98edda05a54f33
This commit is contained in:
Pascal Massimino 2018-04-10 22:56:17 +00:00 committed by James Zern
parent 53aa51e9a3
commit c7aa1264f0

View File

@ -1047,7 +1047,8 @@ int main(int argc, const char *argv[]) {
// Write info // Write info
if (dump_file) { if (dump_file) {
if (picture.use_argb) { if (picture.use_argb) {
fprintf(stderr, "Warning: can't dump file (-d option) in lossless mode."); fprintf(stderr, "Warning: can't dump file (-d option) "
"in lossless mode.\n");
} else if (!DumpPicture(&picture, dump_file)) { } else if (!DumpPicture(&picture, dump_file)) {
fprintf(stderr, "Warning, couldn't dump picture %s\n", dump_file); fprintf(stderr, "Warning, couldn't dump picture %s\n", dump_file);
} }