STR -> RC for report

This commit is contained in:
nub31
2026-03-12 16:07:40 +01:00
parent 832184053f
commit 6e631ba1ba

View File

@@ -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)