From 1224ec642dde2e2ac77f09817b6d8083f8cc41cd Mon Sep 17 00:00:00 2001 From: Stéphane Raimbault Date: Mon, 23 Sep 2013 22:59:36 +0200 Subject: [PATCH] Fix indentation of Windows code --- src/modbus-rtu-private.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modbus-rtu-private.h b/src/modbus-rtu-private.h index 533ddbd..bec4a53 100644 --- a/src/modbus-rtu-private.h +++ b/src/modbus-rtu-private.h @@ -49,12 +49,12 @@ /* WIN32: struct containing serial handle and a receive buffer */ #define PY_BUF_SIZE 512 struct win32_ser { - /* File handle */ - HANDLE fd; - /* Receive buffer */ - uint8_t buf[PY_BUF_SIZE]; - /* Received chars */ - DWORD n_bytes; + /* File handle */ + HANDLE fd; + /* Receive buffer */ + uint8_t buf[PY_BUF_SIZE]; + /* Received chars */ + DWORD n_bytes; }; #endif /* _WIN32 */ -- libgit2 0.21.4