diff --git a/source/ubl-utils.c b/source/ubl-utils.c index e264544..d0fb901 100644 --- a/source/ubl-utils.c +++ b/source/ubl-utils.c @@ -1363,13 +1363,13 @@ int yon_config_save_registered(char *path){ if (sections_add) for_dictionaries(dct,sections_add){ char *command = yon_dictionary_get_data(dct,char*); - printf(command); + printf("%s\n",command); yon_launch(command); } if (sections_remove) for_dictionaries(dct,sections_remove){ char *command = yon_dictionary_get_data(dct,char*); - printf(command); + printf("%s\n",command); yon_launch(command); } return 1;