tcc: Fix typo in error (it's '%s', not '%s)

master
Kirill Smelkov 2010-06-16 16:51:55 +04:00
parent 87db8b637e
commit 66b54af8ea
1 changed files with 1 additions and 1 deletions

2
tcc.c
View File

@ -444,7 +444,7 @@ int main(int argc, char **argv)
} else {
s->outfile = fopen(outfile, "w");
if (!s->outfile)
error("could not open '%s", outfile);
error("could not open '%s'", outfile);
}
} else if (output_type != TCC_OUTPUT_MEMORY) {
if (!outfile) {