diff options
author | Robin Watts <robin.watts@artifex.com> | 2012-10-05 17:16:26 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2012-10-05 17:31:33 +0100 |
commit | c03ad411e17d07d27b498a54e2854e035b78e479 (patch) | |
tree | 70a22e26a87f34d339706e29a46dfeef4f361109 | |
parent | a69de004951ca1e8157497c550ec41989a3cc72e (diff) | |
download | mupdf-c03ad411e17d07d27b498a54e2854e035b78e479.tar.xz |
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.
-rw-r--r-- | scripts/cquote.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |