diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/ser-mingw.c | 2 | ||||
-rw-r--r-- | gdb/ser-unix.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e5e9255..77de88a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-03-23 Joel Brobecker <brobecker@adacore.com> + + * ser-mingw.c (ser_windows_setparity): Fix indentation. + * ser-unix.c (hardwire_setparity): Likewise. + 2015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com> * NEWS: Mention set/show serial parity command. diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c index 6d383ac..a6ec374 100644 --- a/gdb/ser-mingw.c +++ b/gdb/ser-mingw.c @@ -223,7 +223,7 @@ ser_windows_setparity (struct serial *scb, int parity) break; default: internal_warning (__FILE__, __LINE__, - "Incorrect parity value: %d", parity); + "Incorrect parity value: %d", parity); return -1; } diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c index 280fb6a..356e5e7 100644 --- a/gdb/ser-unix.c +++ b/gdb/ser-unix.c @@ -918,7 +918,7 @@ hardwire_setparity (struct serial *scb, int parity) break; default: internal_warning (__FILE__, __LINE__, - "Incorrect parity value: %d", parity); + "Incorrect parity value: %d", parity); return -1; } |