mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
KASP timings all uint32_t
Get rid of the warnings in the Windows build.
This commit is contained in:
@@ -984,8 +984,8 @@ LIBISCCFG_EXTERNAL_DATA cfg_type_t cfg_type_uint64 = {
|
||||
* Get the number of digits in a number.
|
||||
*/
|
||||
static size_t
|
||||
numlen(time_t num) {
|
||||
uint32_t period = (uint32_t) num;
|
||||
numlen(uint32_t num) {
|
||||
uint32_t period = num;
|
||||
size_t count = 0;
|
||||
|
||||
if (period == 0) {
|
||||
|
Reference in New Issue
Block a user