tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Tinycc-devel] [PATCH 04/11] tcc: Fix typo in error (it's '%s', not '%s)


From: Kirill Smelkov
Subject: [Tinycc-devel] [PATCH 04/11] tcc: Fix typo in error (it's '%s', not '%s)
Date: Mon, 21 Jun 2010 18:31:23 +0400

From: Kirill Smelkov <address@hidden>

---
 tcc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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) {
-- 
1.7.1.427.g9562c




reply via email to

[Prev in Thread] Current Thread [Next in Thread]