From 6e631ba1ba44bd8e6bbb62485b7c0fcacb9245f1 Mon Sep 17 00:00:00 2001 From: nub31 Date: Thu, 12 Mar 2026 16:07:40 +0100 Subject: [PATCH] STR -> RC for report --- compiler/Generator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/Generator.cs b/compiler/Generator.cs index cad14eb..88cf815 100644 --- a/compiler/Generator.cs +++ b/compiler/Generator.cs @@ -129,7 +129,7 @@ static size_t rc_frees = 0; __attribute__((destructor)) static void string_debug_report(void) { - fprintf(stderr, "[STR] REPORT allocs=%zu frees=%zu leaks=%zu\n", rc_allocs, rc_frees, rc_allocs - rc_frees); + fprintf(stderr, "[RC] REPORT allocs=%zu frees=%zu leaks=%zu\n", rc_allocs, rc_frees, rc_allocs - rc_frees); } static inline void string_rc_inc(string *str)