Skip to content

Commit e3e917f

Browse files
committed
[MSWSOCK]
- Fix a BOOL vs BOOLEAN issue svn path=/branches/aicom-network-branch/; revision=50596
1 parent 0ee5ec5 commit e3e917f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dll/win32/mswsock/msafd/sockopt.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,8 @@ WSPIoctl(IN SOCKET Handle,
213213
PSOCKET_INFORMATION Socket;
214214
INT ErrorCode;
215215
PWINSOCK_TEB_DATA ThreadData;
216-
BOOLEAN Blocking, NeedsCompletion;
216+
BOOLEAN Blocking;
217+
BOOL NeedsCompletion;
217218

218219
/* Enter prolog */
219220
ErrorCode = SockEnterApiFast(&ThreadData);
@@ -294,7 +295,7 @@ WSPIoctl(IN SOCKET Handle,
294295
lpcbBytesReturned,
295296
lpOverlapped,
296297
lpCompletionRoutine,
297-
(LPBOOL)&NeedsCompletion);
298+
&NeedsCompletion);
298299
break;
299300
}
300301

0 commit comments

Comments
 (0)