diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 20:00:29 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-21 20:00:29 +0100 |
| commit | ef522ea5cd0c1f25fe8f3c66e23ef7f61a3017fd (patch) | |
| tree | ea62e5d9d7249ad15f77a6ba2c2b51e2750c90b2 | |
| parent | 61ec593c95f3210bdfcd22539d43ef507210981f (diff) | |
| download | nonstd-ef522ea5cd0c1f25fe8f3c66e23ef7f61a3017fd.tar.gz | |
Cleanup and fixes
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ char *content = read_entire_file("data.txt", &size); if (content) { printf("Read %zu bytes:\n%s\n", size, content); - FREE(content); // Standard free (unless using arena) + free(content); // Standard free (unless using arena) } // Or read directly into a string builder |
