From 89e946349ffe9ef3b5d49e3070dc328a67236a2d Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Mon, 4 Nov 2024 21:49:15 +0100 Subject: [PATCH] Removed debug print --- src/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test.c b/src/test.c index c54a422..444c1d5 100644 --- a/src/test.c +++ b/src/test.c @@ -90,7 +90,7 @@ void test_strbuf(void) { FILE *dst = fmemopen(dstbuf, ULAS_LINEMAX, "we"); \ assert(ulas_preproc(dst, src) == (expect_ret)); \ fclose(src); \ - fclose(dst); printf("%s\n", dstbuf); \ + fclose(dst); \ assert(strcmp(dstbuf, (expect_dst)) == 0); \ } -- 2.30.2