From 7cb055a4eda672f481c4528d152ed467e3dae7ef Mon Sep 17 00:00:00 2001 From: David Mak Date: Mon, 12 Aug 2024 16:32:26 +0800 Subject: [PATCH] WIP13 - More bugfix --- nac3artiq/src/codegen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nac3artiq/src/codegen.rs b/nac3artiq/src/codegen.rs index 761f95af..d79ba0f7 100644 --- a/nac3artiq/src/codegen.rs +++ b/nac3artiq/src/codegen.rs @@ -1107,7 +1107,7 @@ pub fn call_core_log_impl<'ctx>( ) -> Result<(), String> { let (arg_ty, arg_val) = arg; - polymorphic_print(ctx, generator, &[(arg_ty, arg_val.into())], "", None, false, false)?; + polymorphic_print(ctx, generator, &[(arg_ty, arg_val.into())], " ", Some("\n"), false, false)?; Ok(()) }