From 4e4a6ee5eb2b53ef8690a561931a214295ed5199 Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Fri, 3 Nov 2023 17:43:53 +0600 Subject: [PATCH] Test --- source/ubl-utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;