annotate: be consistent in error messages

master
Lance Wang 2019-07-31 21:49:08 +08:00 committed by Mike Frysinger
parent 55f3b360c0
commit bbb46ab9a5
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ int main(int argc, char *argv[])
fontError = gdImageStringFT(im, 0, color, font, size, 0, rx, y, text);
if(fontError) {
fprintf(stderr, "font error at line %d: %s\n", lines, fontError);
fprintf(stderr, "Font error at line %d: %s\n", lines, fontError);
exit(7);
}