From e5be920841d4a655231ae0cd5065fab3979157a4 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Wed, 13 Apr 2016 16:24:40 +0200 Subject: [PATCH] lout: Add missing "\n" --- rpp-test-sw/commands/cmd_lout.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rpp-test-sw/commands/cmd_lout.c b/rpp-test-sw/commands/cmd_lout.c index b03dd8d..0d133e0 100644 --- a/rpp-test-sw/commands/cmd_lout.c +++ b/rpp-test-sw/commands/cmd_lout.c @@ -47,12 +47,12 @@ int cmd_do_lout_set(cmd_io_t *cmd_io, const struct cmd_des *des, char *param[]) return -CMDERR_BADPAR; ret = rpp_lout_set(pin, val); if (ret == -1) { - rpp_sci_printf("Pin out of range."); + rpp_sci_printf("Pin out of range.\n"); return -CMDERR_BADPAR; } if (rpp_lout_update() == FAILURE) { - rpp_sci_printf("LOUT update failed."); + rpp_sci_printf("LOUT update failed.\n"); return -CMDERR_EIO; } @@ -78,13 +78,13 @@ int cmd_do_lout_diag(cmd_io_t *cmd_io, const struct cmd_des *des, char *param[]) return -CMDERR_BADPAR; if (rpp_lout_update() == FAILURE) { - rpp_sci_printf("LOUT update failed."); + rpp_sci_printf("LOUT update failed.\n"); return -CMDERR_EIO; } ret = rpp_lout_diag(pin); if (ret == -1) { - rpp_sci_printf("Pin out of range."); + rpp_sci_printf("Pin out of range.\n"); return -CMDERR_BADPAR; } -- 2.39.2