From f0253c8fc20e3856a590c545642ea2a8aea635ef Mon Sep 17 00:00:00 2001 From: Robear Selwans Date: Wed, 18 May 2022 22:05:43 +0200 Subject: [PATCH] Removed forgotten debug printf Signed-off-by: Robear Selwans --- ev_str.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ev_str.h b/ev_str.h index 057abcf..c18f718 100644 --- a/ev_str.h +++ b/ev_str.h @@ -429,7 +429,7 @@ evstring_push_impl( } memcpy((*s) + meta->length, data, sz); - printf("Memcpy: dst = (*s {%p}) + meta->length {%llu}, src = data {%p}, size = sz {%llu}\n", *s, meta->length, data, sz); + // printf("Memcpy: dst = (*s {%p}) + meta->length {%llu}, src = data {%p}, size = sz {%llu}\n", *s, meta->length, data, sz); meta->length += sz; (*s)[meta->length] = '\0';