diff options
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/rcfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/rcfile.c b/src/tools/rcfile.c index ee8a2337..d04683a1 100644 --- a/src/tools/rcfile.c +++ b/src/tools/rcfile.c @@ -547,7 +547,7 @@ void ApplyParams(const char* name) my_context->x64trace = 1; box64_trace = p; } - printf_log(LOG_INFO, "Applying %s=%s", "BOX64_TRACE", param->trace); + printf_log(LOG_INFO, "Applying %s=%s\n", "BOX64_TRACE", param->trace); } if(param->is_trace_init_present) { char* p = param->trace_init; @@ -555,7 +555,7 @@ void ApplyParams(const char* name) my_context->x64trace = 1; trace_init = p; } - printf_log(LOG_INFO, "Applying %s=%s", "BOX64_TRACE_INIT", param->trace_init); + printf_log(LOG_INFO, "Applying %s=%s\n", "BOX64_TRACE_INIT", param->trace_init); } if(my_context->x64trace && !old_x64trace) { printf_log(LOG_INFO, "Initializing Zydis lib\n"); |