2
0
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:
Matthijs Mekking
2019-10-30 17:40:08 +01:00
parent 9fbc869108
commit 29e6ec3181
4 changed files with 29 additions and 31 deletions

View File

@@ -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) {