mirror of
https://github.com/libevent/libevent.git
synced 2025-01-31 09:12:55 +08:00
Fix som event_warns that should have been event_warnx
This commit is contained in:
parent
e8a903cee8
commit
19c71e7454
4
event.c
4
event.c
@ -1151,7 +1151,7 @@ event_base_init_common_timeout(struct event_base *base,
|
||||
}
|
||||
}
|
||||
if (base->n_common_timeouts == MAX_COMMON_TIMEOUTS) {
|
||||
event_warn("%s: Too many common timeouts already in use; "
|
||||
event_warnx("%s: Too many common timeouts already in use; "
|
||||
"we only support %d per event_base", __func__,
|
||||
MAX_COMMON_TIMEOUTS);
|
||||
goto done;
|
||||
@ -1477,7 +1477,7 @@ event_base_loop(struct event_base *base, int flags)
|
||||
EVBASE_ACQUIRE_LOCK(base, th_base_lock);
|
||||
|
||||
if (base->running_loop) {
|
||||
event_warn("%s: reentrant invocation. Only one event_base_loop"
|
||||
event_warnx("%s: reentrant invocation. Only one event_base_loop"
|
||||
" can run on each event_base at once.", __func__);
|
||||
EVBASE_RELEASE_LOCK(base, th_base_lock);
|
||||
return -1;
|
||||
|
2
evutil.c
2
evutil.c
@ -268,7 +268,7 @@ evutil_make_socket_nonblocking(evutil_socket_t fd)
|
||||
{
|
||||
u_long nonblocking = 1;
|
||||
if (ioctlsocket(fd, FIONBIO, &nonblocking) == SOCKET_ERROR) {
|
||||
event_warn("fcntl(%d, F_GETFL)", (int)fd);
|
||||
event_sock_warn(fd, "fcntl(%d, F_GETFL)", (int)fd);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user