Forgotten to close a file. This is corrected.
authorceriel <none@none>
Mon, 12 Nov 1984 18:05:20 +0000 (18:05 +0000)
committerceriel <none@none>
Mon, 12 Nov 1984 18:05:20 +0000 (18:05 +0000)
util/LLgen/src/main.c

index 509df57..964b08c 100644 (file)
@@ -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; {