From 52a1071abfb4ff24c09bc82c738f7801e9c3df00 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Mon, 7 Dec 2020 22:30:19 +0000 Subject: [PATCH] added extra include packages --- src/binary_c_python.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/binary_c_python.c b/src/binary_c_python.c index 8b8478da2..477f3705c 100644 --- a/src/binary_c_python.c +++ b/src/binary_c_python.c @@ -620,7 +620,8 @@ int run_system(char * argstring, Boolean free_store = FALSE; if (store_memaddr == -1) { - Boolean free_store = TRUE; + debug_printf("Decided to free the store memaddr\n"); + free_store = TRUE; } /* Determine whether to free the persistent data memory adress*/ @@ -628,7 +629,7 @@ int run_system(char * argstring, if (persistent_data_memaddr == -1) { debug_printf("Decided to free the persistent_data memaddr\n"); - Boolean free_persistent_data = TRUE; + free_persistent_data = TRUE; } /* free stardata (except the buffer) */ -- GitLab