mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '1684-timer-test-build-v9_14' into 'v9_14'
fix a pointer-to-int cast error See merge request isc-projects/bind9!3272
This commit is contained in:
commit
d90baa55bf
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ ticktock(isc_task_t *task, isc_event_t *event) {
|
|||
}
|
||||
|
||||
expected_event_type = ISC_TIMEREVENT_LIFE;
|
||||
if ((isc_timertype_t) event->ev_arg == isc_timertype_ticker) {
|
||||
if ((uintptr_t)event->ev_arg == isc_timertype_ticker) {
|
||||
expected_event_type = ISC_TIMEREVENT_TICK;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue