From a4cbd5c6fc060427553452dbb9de76dbd5399016 Mon Sep 17 00:00:00 2001
From: Joerg Wunsch <j@uriah.heep.sax.de>
Date: Mon, 7 Mar 2022 23:25:36 +0100
Subject: [PATCH] Append a newline to the nonstandard baudrate warning

---
 src/ser_posix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ser_posix.c b/src/ser_posix.c
index 50bd2cfe..2c5d45b5 100644
--- a/src/ser_posix.c
+++ b/src/ser_posix.c
@@ -99,7 +99,7 @@ static speed_t serial_baud_lookup(long baud, bool *nonstandard)
    * If a non-standard BAUD rate is used, issue
    * a warning (if we are verbose) and return the raw rate
    */
-  avrdude_message(MSG_NOTICE, "%s: serial_baud_lookup(): Using non-standard baud rate: %ld",
+  avrdude_message(MSG_NOTICE, "%s: serial_baud_lookup(): Using non-standard baud rate: %ld\n",
               progname, baud);
 
   *nonstandard = true;