mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 16:10:01 -04:00
Fix undefined behaviour occurrences
The undefined behaviour was detected by LLVM 17. Fix the affected
functions definitions to match the expected function type.
(cherry picked from commit 20fdab8667)
This commit is contained in:
parent
f0b21a2218
commit
59741ddea9
1 changed files with 1 additions and 1 deletions
|
|
@ -394,7 +394,7 @@ noop_recv_cb(isc_nmhandle_t *handle, isc_result_t eresult, isc_region_t *region,
|
|||
}
|
||||
|
||||
static unsigned int
|
||||
noop_accept_cb(isc_nmhandle_t *handle, unsigned int result, void *cbarg) {
|
||||
noop_accept_cb(isc_nmhandle_t *handle, isc_result_t result, void *cbarg) {
|
||||
UNUSED(handle);
|
||||
UNUSED(cbarg);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue