aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index a165a9ca52f..f4f767dac3f 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2361,7 +2361,8 @@ serial_configure (struct Lisp_Process *p,
2361 CHECK_NUMBER (tem); 2361 CHECK_NUMBER (tem);
2362 err = cfsetspeed (&attr, XINT (tem)); 2362 err = cfsetspeed (&attr, XINT (tem));
2363 if (err != 0) 2363 if (err != 0)
2364 error ("cfsetspeed(%d) failed: %s", XINT (tem), emacs_strerror (errno)); 2364 error ("cfsetspeed(%"pEd") failed: %s", XINT (tem),
2365 emacs_strerror (errno));
2365 childp2 = Fplist_put (childp2, QCspeed, tem); 2366 childp2 = Fplist_put (childp2, QCspeed, tem);
2366 2367
2367 /* Configure bytesize. */ 2368 /* Configure bytesize. */