X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fhelper%2Freplacements.c;h=ef20e7710660c0f186e64a5032f155e16644aa67;hb=910bb250c479b4de9c30231e1a090e9a2d647434;hp=77e4ee7a35a25e6acdcde7cba2b990f1fc0b150e;hpb=8b994145b849c40b0a195c3fb332b9770b2f9097;p=fw%2Fopenocd diff --git a/src/helper/replacements.c b/src/helper/replacements.c index 77e4ee7a3..ef20e7710 100644 --- a/src/helper/replacements.c +++ b/src/helper/replacements.c @@ -169,7 +169,7 @@ int win_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct time /* build an array of handles for non-sockets */ for (i = 0; i < max_fd; i++) { if (SAFE_FD_ISSET(i, rfds) || SAFE_FD_ISSET(i, wfds) || SAFE_FD_ISSET(i, efds)) { - long handle = _get_osfhandle(i); + intptr_t handle = (intptr_t) _get_osfhandle(i); handles[n_handles] = (HANDLE)handle; if (handles[n_handles] == INVALID_HANDLE_VALUE) { /* socket */ @@ -244,7 +244,7 @@ int win_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct time if (WAIT_OBJECT_0 == WaitForSingleObject(handles[i], 0)) { if (SAFE_FD_ISSET(handle_slot_to_fd[i], rfds)) { DWORD dwBytes; - long handle = _get_osfhandle(handle_slot_to_fd[i]); + intptr_t handle = (intptr_t) _get_osfhandle(handle_slot_to_fd[i]); if (PeekNamedPipe((HANDLE)handle, NULL, 0, NULL, &dwBytes, NULL)) {