Skip to content

Commit

Permalink
Forgot to fclose
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlin96069 committed Feb 24, 2024
1 parent bf3ea1d commit 63eb1a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/bundler.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ int main(int argc, char* argv[]) {
}

fprintf(out, "\n};\n\n");
fclose(fp);
}

fprintf(out, "const char* bundle[] = {\n");
Expand All @@ -56,6 +57,6 @@ int main(int argc, char* argv[]) {
fprintf(out, "};\n\n");

fprintf(out, "#endif\n");

fclose(out);
return 0;
}

0 comments on commit 63eb1a7

Please sign in to comment.