From 632d00c7e761c0806343183c2161fd0a2987d48e Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Sun, 6 Oct 2013 16:42:07 +0300 Subject: [PATCH] baud: Add missing newline to error print Signed-off-by: Timo Kokkonen --- baud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baud.c b/baud.c index be2194e..834974e 100644 --- a/baud.c +++ b/baud.c @@ -33,7 +33,7 @@ int open_at_baud(const char *device, int *baud) fd = open(device, O_RDWR | O_NOCTTY | O_NDELAY); if (fd == -1) { - fprintf(stderr, "error opening %s: %m", device); + fprintf(stderr, "error opening %s: %m\n", device); return fd; } -- 2.44.0