From d47eca902242f4a690db9daec9e9413a39bb4354 Mon Sep 17 00:00:00 2001 From: Ludovic 'Archivist' Lagouardette Date: Thu, 7 Nov 2024 19:10:23 +0100 Subject: [PATCH] Oops, left a debugging printf in a critical section --- lib.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib.c b/lib.c index 8e1f23e..b7cb538 100644 --- a/lib.c +++ b/lib.c @@ -388,7 +388,6 @@ static void* ink_realloc(struct context* _, void* ptr, size_t sz) { } static void ink_free(struct context* _, void* ptr) { _=_; - printf("%p\n", ptr); free(ptr); } static int ink_putchar(struct context* _, int c) {