소스 검색

Fix indentation of Windows code

Stéphane Raimbault 12 년 전
부모
커밋
1224ec642d
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      src/modbus-rtu-private.h

+ 6 - 6
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 */