Remove check for open file because NOP

This commit is contained in:
Tobias Eidelpes 2019-12-01 23:09:08 +01:00
parent f518db5cd5
commit 020c54b422

View File

@ -40,8 +40,7 @@ int main(void)
printf("Solution for Part Two: %d\n", fuel2);
fclose(fp);
if (line)
free(line);
free(line);
return 0;
}