瀏覽代碼

GetLastError() returns a DWORD so it's an unsigned int. Fixes #9.

The error reported by #9 was already fixed in master but this change
scrupulously respects the definition of DWORD.
Stéphane Raimbault 14 年之前
父節點
當前提交
05ecdc2101
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/modbus-tcp.c

+ 1 - 1
src/modbus-tcp.c

@@ -69,7 +69,7 @@ static int _modbus_tcp_init_win32(void)
 
 
     if (WSAStartup(MAKEWORD(2, 0), &wsaData) != 0) {
     if (WSAStartup(MAKEWORD(2, 0), &wsaData) != 0) {
         fprintf(stderr, "WSAStartup() returned error code %d\n",
         fprintf(stderr, "WSAStartup() returned error code %d\n",
-                (int)GetLastError());
+                (unsigned int)GetLastError());
         errno = EIO;
         errno = EIO;
         return -1;
         return -1;
     }
     }