Commit eb493dd3 authored by gab@chromium.org's avatar gab@chromium.org

Revert of Change SPACEPARITY in the Windows serial api implementation to...

Revert of Change SPACEPARITY in the Windows serial api implementation to ODDPARITY. (https://codereview.chromium.org/396023003/)

Reason for revert:
Very speculative revert for current XP bots failures (all 3 bots are failing with obscure errors and this is our last suspect in the list...).

I'll reland if that's not it.

Thanks for your understanding!

Original issue's description:
> Change SPACEPARITY in the Windows serial api implementation to ODDPARITY.
> 
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=284000

TBR=rockot@chromium.org,sammc@chromium.org
NOTREECHECKS=true
NOTRY=true

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284087 0039d316-1c4b-4281-b951-d872f2087c98
parent 00b8dfdb
......@@ -53,7 +53,7 @@ int ParityBitEnumToConstant(serial::ParityBit parity_bit) {
case serial::PARITY_BIT_EVEN:
return EVENPARITY;
case serial::PARITY_BIT_ODD:
return ODDPARITY;
return SPACEPARITY;
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