(svn r7540) -Codechange: Print a summary of the number of errors/warnings of a language when strgen is run with the -w flag.

This commit is contained in:
Darkvater 2006-12-22 01:18:56 +00:00
parent 9c5b15eff1
commit 96a53f1b13
1 changed files with 6 additions and 1 deletions

View File

@ -217,7 +217,7 @@ static void PutUtf8(uint32 value)
PutByte(0x80 + GB(value, 6, 6));
PutByte(0x80 + GB(value, 0, 6));
} else {
warning("Invalid unicode value U+0x%X\n", value);
warning("Invalid unicode value U+0x%X", value);
}
}
@ -1386,6 +1386,11 @@ int CDECL main(int argc, char* argv[])
if (r == NULL || strcmp(r, ".txt") != 0) r = strchr(pathbuf, '\0');
ttd_strlcpy(r, ".lng", (size_t)(r - pathbuf));
WriteLangfile(pathbuf, show_todo);
/* if showing warnings, print a summary of the language */
if (show_todo == 2) {
fprintf(stdout, "%d warnings and %d errors for %s", _warnings, _errors, pathbuf);
}
} else {
fprintf(stderr, "Invalid arguments\n");
}