Skip to content

Commit

Permalink
fix build on 32-bit Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
drakkan authored and jackc committed Mar 7, 2023
1 parent 0dbb0a5 commit 19039e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/nbconn/nbconn_real_non_block_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var ioctlsocket = dll.MustFindProc("ioctlsocket")
type sockMode int

const (
FIONBIO int = 0x8004667e
FIONBIO uint32 = 0x8004667e
sockModeBlocking sockMode = 0
sockModeNonBlocking sockMode = 1
)
Expand Down

0 comments on commit 19039e6

Please sign in to comment.