aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-04-29 22:32:10 +0000
committerHarald Welte <laforge@gnumonks.org>2009-04-29 22:32:10 +0000
commitc50ea848049034fba14e68d31868b527c85e4c28 (patch)
tree7a252e48d4954f8d5e25cbd39c79bef94b573836
parentd47a4beff8753feb23704c0e18bbba9660c388c5 (diff)
add missing newline in debug statement for RS232 TX
-rw-r--r--src/rs232.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rs232.c b/src/rs232.c
index 24a3b055e..2a64de5ef 100644
--- a/src/rs232.c
+++ b/src/rs232.c
@@ -101,7 +101,7 @@ static int handle_ser_write(struct bsc_fd *bfd)
return 0;
}
- DEBUGP(DMI, "RS232 TX: %s", hexdump(msg->data, msg->len));
+ DEBUGP(DMI, "RS232 TX: %s\n", hexdump(msg->data, msg->len));
/* send over serial line */
written = write(bfd->fd, msg->data, msg->len);