1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-12-26 11:30:03 +05:30

extol.c: fix calling fclose with NULL argument

This commit is contained in:
Intel A80486DX2-66 2024-03-09 13:54:41 +03:00
parent 267b869440
commit 93768da40f
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -61,7 +61,7 @@ extol (FILE *f)
fputc ('=', fs);
result >>= 4;
fprintf (fs, "\n");
fclose (f);
fclose (fs);
}
else
{