Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-09-06 16:02:01 +0300
committerVojtech Kral <vojtech@kral.hk>2019-09-06 16:14:28 +0300
commit3b498f687cfa3b6a5d2e81a185eca844f710eb99 (patch)
tree58cab56c4b5d0d3df17973311a8d81e3d3f42a7c /src/avrdude
parentbda0246b5de9908f7398eae8f30de55bb28c2359 (diff)
Fix a few error messages in avrdude
Diffstat (limited to 'src/avrdude')
-rw-r--r--src/avrdude/ser_posix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/avrdude/ser_posix.c b/src/avrdude/ser_posix.c
index e2afd1c09..9992f78e3 100644
--- a/src/avrdude/ser_posix.c
+++ b/src/avrdude/ser_posix.c
@@ -90,7 +90,7 @@ static speed_t serial_baud_lookup(long baud)
* 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);
return baud;
@@ -110,7 +110,7 @@ static int ser_setspeed(union filedescriptor *fd, long baud)
*/
rc = tcgetattr(fd->ifd, &termios);
if (rc < 0) {
- avrdude_message(MSG_INFO, "%s: ser_setspeed(): tcgetattr() failed",
+ avrdude_message(MSG_INFO, "%s: ser_setspeed(): tcgetattr() failed\n",
progname);
return -errno;
}