From 6bad349481ab5df2b8adb3a582b353634b794eb9 Mon Sep 17 00:00:00 2001 From: Stéphane Raimbault Date: Mon, 11 Jul 2011 08:05:17 +0200 Subject: [PATCH] Minor coding convention --- src/modbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modbus.c b/src/modbus.c index 3756877..c68ddd0 100644 --- a/src/modbus.c +++ b/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; } -- libgit2 0.21.4