tcc: Fix typo in error (it's '%s', not '%s)
This commit is contained in:
parent
87db8b637e
commit
66b54af8ea
1 changed files with 1 additions and 1 deletions
2
tcc.c
2
tcc.c
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue