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

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
Darkvater 18 years ago
parent 9c5b15eff1
commit 96a53f1b13

@ -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");
}

Loading…
Cancel
Save