Browse Source

Minor coding convention

Stéphane Raimbault 13 năm trước cách đây
mục cha
commit
6bad349481
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/modbus.c

+ 1 - 1
src/modbus.c

@@ -495,7 +495,7 @@ static int check_confirmation(modbus_t *ctx, uint8_t *req,
     }
 
     /* Check responding slave is the slave we requested */
-    if(req[0] != 0 && rsp[0] != req[0]) {
+    if (req[0] != 0 && rsp[0] != req[0]) {
         errno = EMBBADSLAVE;
         return -1;
     }