diff options
author | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 14:14:32 +0000 |
---|---|---|
committer | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 14:14:32 +0000 |
commit | eb493dd3efb1bb9c223703592f4aceca25b5d88c (patch) | |
tree | 2ec950bb7acf6e061dc7db21dedc82f17c33f757 /device | |
parent | 00b8dfdb8e5c5c0d483c88cf1c3db9d001483e41 (diff) | |
download | chromium_src-eb493dd3efb1bb9c223703592f4aceca25b5d88c.zip chromium_src-eb493dd3efb1bb9c223703592f4aceca25b5d88c.tar.gz chromium_src-eb493dd3efb1bb9c223703592f4aceca25b5d88c.tar.bz2 |
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
Diffstat (limited to 'device')
-rw-r--r-- | device/serial/serial_io_handler_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/serial/serial_io_handler_win.cc b/device/serial/serial_io_handler_win.cc index 275a189..b0a4c2c 100644 --- a/device/serial/serial_io_handler_win.cc +++ b/device/serial/serial_io_handler_win.cc @@ -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; |