X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fhelper%2Fcommand.c;h=85d9463dfc29c41f391499b9530759abf649d5d1;hb=0535531d2753f1b86454bb6ffad6ffbdd56c66d0;hp=d5ac34b490f9206d2bb11bf827f57bcd5e9d91c1;hpb=4f9a9b8ebae8425eda3a71ccb782789cd3b8f6b7;p=openocd.git diff --git a/src/helper/command.c b/src/helper/command.c index d5ac34b490..85d9463dfc 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -676,7 +676,7 @@ int command_run_line(struct command_context *context, char *line) { /* We do not print the connection closed error message */ Jim_MakeErrorMessage(interp); - LOG_USER_N("%s\n", Jim_GetString(Jim_GetResult(interp), NULL)); + LOG_USER("%s", Jim_GetString(Jim_GetResult(interp), NULL)); } if (retval == ERROR_OK) { @@ -706,7 +706,7 @@ int command_run_line(struct command_context *context, char *line) buff[chunk] = 0; LOG_USER_N("%s", buff); } - LOG_USER_N("%s", "\n"); + LOG_USER_N("\n"); } retval = ERROR_OK; } @@ -860,8 +860,7 @@ static void command_help_show_wrap(const char *str, unsigned n, unsigned n2) if (next - last < HELP_LINE_WIDTH(n)) cp = next; command_help_show_indent(n); - LOG_USER_N("%.*s", (int)(cp - last), last); - LOG_USER_N("\n"); + LOG_USER("%.*s", (int)(cp - last), last); last = cp + 1; n = n2; }