Skip to content

Commit

Permalink
Merge pull request #119 from battlesnake/master
Browse files Browse the repository at this point in the history
Minor fixes: unnecessary sign conversion, redundant path delimiter.
  • Loading branch information
pavel-kirienko authored Nov 29, 2017
2 parents e2c68be + 155c721 commit 9044cd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libuavcan/include.mk
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ LIBUAVCAN_DSDLC := $(LIBUAVCAN_DIR)dsdl_compiler/libuavcan_dsdlc
#
# Standard DSDL definitions
#
UAVCAN_DSDL_DIR := $(UAVCAN_DIR)/dsdl/uavcan
UAVCAN_DSDL_DIR := $(UAVCAN_DIR)dsdl/uavcan
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 9044cd1

Please sign in to comment.