Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
hiredis
Commits
4ece9a02
Unverified
Commit
4ece9a02
authored
Jan 05, 2022
by
Peter Tummillo
Committed by
GitHub
Jan 05, 2022
Browse files
Fix adapters/libevent.h compilation for 64-bit Windows (#937)
Where SOCKET is a 64-bit unsigned integer.
parent
799edfaa
Changes
1
Show whitespace changes
Inline
Side-by-side
adapters/libevent.h
View file @
4ece9a02
...
...
@@ -50,7 +50,7 @@ static void redisLibeventDestroy(redisLibeventEvents *e) {
hi_free
(
e
);
}
static
void
redisLibeventHandler
(
in
t
fd
,
short
event
,
void
*
arg
)
{
static
void
redisLibeventHandler
(
evutil_socket_
t
fd
,
short
event
,
void
*
arg
)
{
((
void
)
fd
);
redisLibeventEvents
*
e
=
(
redisLibeventEvents
*
)
arg
;
e
->
state
|=
REDIS_LIBEVENT_ENTERED
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment