Commit 9a7f3a31 authored by sammc@chromium.org's avatar sammc@chromium.org

Change SPACEPARITY in the Windows serial api implementation to ODDPARITY.

Review URL: https://codereview.chromium.org/396023003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284000 0039d316-1c4b-4281-b951-d872f2087c98
parent 1f4a8257
......@@ -53,7 +53,7 @@ int ParityBitEnumToConstant(serial::ParityBit parity_bit) {
case serial::PARITY_BIT_EVEN:
return EVENPARITY;
case serial::PARITY_BIT_ODD:
return SPACEPARITY;
return ODDPARITY;
case serial::PARITY_BIT_NO:
default:
return NOPARITY;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment