From 66b54af8ea8a2277e5d6b8a0c1661d42fea4a639 Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Wed, 16 Jun 2010 16:51:55 +0400 Subject: [PATCH] tcc: Fix typo in error (it's '%s', not '%s) --- tcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcc.c b/tcc.c index d0ed8f6..759151a 100644 --- a/tcc.c +++ b/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) {