Typo, missing semicolon.

This commit is contained in:
Petter Reinholdtsen 2014-01-31 06:13:58 +00:00
parent 2c2844ac03
commit 9393bf0133
2 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,7 @@ serial_bm_open(struct ipmi_intf * intf)
#ifdef IUCLC
/* Only disable uppercase-to-lowercase mapping on input for
platforms supporting the flag. */
ti.c_iflag &= ~(IUCLC)
ti.c_iflag &= ~(IUCLC);
#endif

View File

@ -216,7 +216,7 @@ ipmi_serial_term_open(struct ipmi_intf * intf)
#ifdef IUCLC
/* Only disable uppercase-to-lowercase mapping on input for
platforms supporting the flag. */
ti.c_iflag &= ~(IUCLC)
ti.c_iflag &= ~(IUCLC);
#endif
ti.c_oflag &= ~(OPOST);