Skip to content

Commit ff038e2

Browse files
committed
style: Fix spacing in checkReadType and checkWriteType functions for consistency
1 parent e887770 commit ff038e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dynamixel/dynamixel.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ DxlError Dynamixel::WriteMultiDxlData()
864864

865865
bool Dynamixel::checkReadType()
866866
{
867-
if (read_data_list_.size() == 1){
867+
if (read_data_list_.size() == 1) {
868868
if (CheckIndirectReadAvailable(read_data_list_.at(0).comm_id) != DxlError::OK) {
869869
return BULK;
870870
}
@@ -916,7 +916,7 @@ bool Dynamixel::checkReadType()
916916

917917
bool Dynamixel::checkWriteType()
918918
{
919-
if (write_data_list_.size() == 1){
919+
if (write_data_list_.size() == 1) {
920920
if (CheckIndirectWriteAvailable(write_data_list_.at(0).comm_id) != DxlError::OK) {
921921
return BULK;
922922
}

0 commit comments

Comments
 (0)