From 8a9b09cf5c95115669a234c73ca70511ce840f2d Mon Sep 17 00:00:00 2001 From: wes Date: Fri, 3 Jul 2020 22:45:33 -0400 Subject: [PATCH] don't try printf-ing scheme strings --- scheme_functions.h | 1 - 1 file changed, 1 deletion(-) diff --git a/scheme_functions.h b/scheme_functions.h index e2403dc..bd2d549 100644 --- a/scheme_functions.h +++ b/scheme_functions.h @@ -5,7 +5,6 @@ scm_qu_pop(SCM scm_qu) { struct BrowserMessage *msg = g_async_queue_timeout_pop(g_queue, 10); if (msg != NULL) { - printf(msg->data); return scm_from_locale_string(msg->data); } else {