From ef522ea5cd0c1f25fe8f3c66e23ef7f61a3017fd Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 20:00:29 +0100 Subject: Cleanup and fixes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7004467..69d239b 100644 --- a/README.md +++ b/README.md @@ -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 -- cgit v1.2.3