Skip to content

Commit

Permalink
remove unneeded "\n" from debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
rockowitz committed Jan 17, 2024
1 parent 67d397e commit a1f8d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libmain/api_base.c
Expand Up @@ -392,7 +392,7 @@ _ddca_new_init(void) {
if (s && strlen(s) > 0)
debug = true;

DBGF(debug, "Starting. library_initialized=%s\n", sbool(library_initialized));
DBGF(debug, "Starting. library_initialized=%s", sbool(library_initialized));

init_api_base(); // registers functions in RTTI table
init_base_services(); // initializes tracing related modules
Expand Down

0 comments on commit a1f8d9b

Please sign in to comment.