Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/boost/asio/impl/serial_port_base.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ BOOST_ASIO_SYNC_OP_VOID serial_port_base::character_size::store(
BOOST_ASIO_OPTION_STORAGE& storage, boost::system::error_code& ec) const
{
#if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
storage.ByteSize = value_;
storage.ByteSize = static_cast<BYTE>(value_);
#else
storage.c_cflag &= ~CSIZE;
switch (value_)
Expand Down