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

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

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

Reason for revert:
Not the issue... re-landing.

Original issue's description:
> 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
> 
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=284087

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

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284132 0039d316-1c4b-4281-b951-d872f2087c98
parent 01ec6ace
......@@ -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