From c03ad411e17d07d27b498a54e2854e035b78e479 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Fri, 5 Oct 2012 17:16:26 +0100 Subject: Bug 693355: Fix cquote.c trying to write to input file. Simple typo; trying to write to input file. Thanks to Moritz Lipp for pointing out the problem. --- scripts/cquote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/cquote.c') diff --git a/scripts/cquote.c b/scripts/cquote.c index 6383f80f..4544d2e1 100644 --- a/scripts/cquote.c +++ b/scripts/cquote.c @@ -114,7 +114,7 @@ main(int argc, char **argv) } if (!bol) - fprintf(fi, "\\n\"\n"); + fprintf(fo, "\\n\"\n"); if (fclose(fi)) { -- cgit v1.2.3