Commit 1224ec642dde2e2ac77f09817b6d8083f8cc41cd

Authored by Stéphane Raimbault
1 parent a11805cb

Fix indentation of Windows code

Showing 1 changed file with 6 additions and 6 deletions
src/modbus-rtu-private.h
... ... @@ -49,12 +49,12 @@
49 49 /* WIN32: struct containing serial handle and a receive buffer */
50 50 #define PY_BUF_SIZE 512
51 51 struct win32_ser {
52   - /* File handle */
53   - HANDLE fd;
54   - /* Receive buffer */
55   - uint8_t buf[PY_BUF_SIZE];
56   - /* Received chars */
57   - DWORD n_bytes;
  52 + /* File handle */
  53 + HANDLE fd;
  54 + /* Receive buffer */
  55 + uint8_t buf[PY_BUF_SIZE];
  56 + /* Received chars */
  57 + DWORD n_bytes;
58 58 };
59 59 #endif /* _WIN32 */
60 60  
... ...