浏览代码

Remove a duplicated semi-colon

Found with the help of clang-format (from another branch)
Patrick Boettcher 7 年之前
父节点
当前提交
26dd610ba2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/modbus.c

+ 1 - 1
src/modbus.c

@@ -1021,7 +1021,7 @@ int modbus_reply_exception(modbus_t *ctx, const uint8_t *req,
     function = req[offset];
 
     sft.slave = slave;
-    sft.function = function + 0x80;;
+    sft.function = function + 0x80;
     sft.t_id = ctx->backend->prepare_response_tid(req, &dummy_length);
     rsp_length = ctx->backend->build_response_basis(&sft, rsp);