Skip to content

Commit

Permalink
Fixed unnecessary sign conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
battlesnake committed Nov 29, 2017
1 parent e2c68be commit 934cc4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libuavcan/src/marshal/uc_bit_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ std::string BitStream::toString() const
for (unsigned offset = 0; true; offset++)
{
uint8_t byte = 0;
if (1U != buf_.read(offset, &byte, 1U))
if (1 != buf_.read(offset, &byte, 1U))
{
break;
}
Expand Down

0 comments on commit 934cc4f

Please sign in to comment.