From 4e26e133fab943a641c28921ad984ad074a2ee5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Ferdinand=20Rivera=20Morell?= Date: Mon, 14 Dec 2020 09:55:44 -0600 Subject: [PATCH] Fix coercion warning. --- src/engine/function.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/function.cpp b/src/engine/function.cpp index 5219254a9..8e5422ec0 100644 --- a/src/engine/function.cpp +++ b/src/engine/function.cpp @@ -3994,7 +3994,7 @@ LIST * function_execute_write_file( char const * out = object_str( list_front( filename.inner ) ); OBJECT * tmp_filename = nullptr; FILE * out_file = nullptr; - bool out_debug = DEBUG_EXEC; + bool out_debug = DEBUG_EXEC != 0; /* For stdout/stderr we will create a temp file and generate a * command that outputs the content as needed.