mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-10 10:11:39 -04:00
silence compiler warning [RT #46471]
This commit is contained in:
parent
ef290d263b
commit
1bb97e8000
1 changed files with 1 additions and 1 deletions
|
|
@ -796,7 +796,7 @@ ISC_LANG_ENDDECLS
|
|||
do { \
|
||||
unsigned int _length; \
|
||||
unsigned char *_cp; \
|
||||
_length = strlen(_source); \
|
||||
_length = (unsigned int)strlen(_source); \
|
||||
_cp = isc_buffer_used(_b); \
|
||||
memmove(_cp, (_source), _length); \
|
||||
(_b)->used += (_length); \
|
||||
|
|
|
|||
Loading…
Reference in a new issue