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)