Unverified Commit 0bdb8112 authored by Marcel Raad's avatar Marcel Raad
Browse files

sockfilt: suppress conversion warning with explicit cast

MSVC warns when implicitly casting -1 to unsigned long.
parent 70cbefeb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -549,7 +549,7 @@ static DWORD WINAPI select_ws_wait_thread(LPVOID lpParameter)
    free(data);
  }
  else
    return -1;
    return (DWORD)-1;

  /* retrieve the type of file to wait on */
  type = GetFileType(handle);