Mercurial > hg > xemacs-beta
diff src/sysdep.c @ 5762:427a72c6ee17
Eliminate several compiler (clang) warnings.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Sun, 15 Sep 2013 23:47:37 +0900 |
parents | ff13c44ce0d9 |
children | b3824b7f5627 |
line wrap: on
line diff
--- a/src/sysdep.c Sun Sep 08 21:48:09 2013 +0200 +++ b/src/sysdep.c Sun Sep 15 23:47:37 2013 +0900 @@ -494,8 +494,10 @@ #else /* <mdiers> What to do upon failure? Just ignoring rc is probably not acceptable, is it? */ - if (cfsetispeed (&s.main, B9600) == -1) /* ignore */; - if (cfsetospeed (&s.main, B9600) == -1) /* ignore */; + if (cfsetispeed (&s.main, B9600) == -1) + ; /* ignore */ + if (cfsetospeed (&s.main, B9600) == -1) + ; /* ignore */ #endif /* defined (CBAUD) */ #else /* not HAVE_TERMIO */