From: Timo Kokkonen Date: Sun, 6 Oct 2013 13:42:07 +0000 (+0300) Subject: baud: Add missing newline to error print X-Git-Url: http://git.itanic.dy.fi/?p=log-plotter;a=commitdiff_plain;h=632d00c7e761c0806343183c2161fd0a2987d48e baud: Add missing newline to error print Signed-off-by: Timo Kokkonen --- 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; }