Fix indentation in ser_windows_setparity and hardwire_setparity.

gdb/ChangeLog:

        * ser-mingw.c (ser_windows_setparity): Fix indentation.
        * ser-unix.c (hardwire_setparity): Likewise.
This commit is contained in:
Joel Brobecker 2015-03-23 15:42:23 -07:00
parent 236af5e336
commit 8a4506c032
3 changed files with 7 additions and 2 deletions

View file

@ -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.

View file

@ -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;
}

View file

@ -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;
}