add missing close of file handle

This commit is contained in:
Ralph Metzler 2018-03-14 10:08:00 +01:00
parent d6013245e4
commit 7b9c4f9ee8
1 changed files with 1 additions and 0 deletions

View File

@ -2815,6 +2815,7 @@ static void awrite(char *fn, char *txt)
if (f)
fprintf(f, "%s", txt);
fclose(f);
}
int main(int argc, char **argv)