From: ceriel Date: Mon, 12 Nov 1984 18:05:20 +0000 (+0000) Subject: Forgotten to close a file. This is corrected. X-Git-Tag: release-5-5~5981 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=1fe1bc8c0995eaa9668a059bba43362c1aed45c8;p=ack.git Forgotten to close a file. This is corrected. --- diff --git a/util/LLgen/src/main.c b/util/LLgen/src/main.c index 509df57db..964b08c8b 100644 --- a/util/LLgen/src/main.c +++ b/util/LLgen/src/main.c @@ -266,6 +266,7 @@ copyfile(n) { fatal(0,"Cannot open libraryfile, call an expert"); } while ((c = getc(f)) != EOF) putc(c,fpars); + fclose(f); } install(target, source) string target, source; {