+4465. [bug] Don't use "%z" as Windows doesn't support it.
+ [RT #43131]
+
4464. [bug] Fix windows python support. [RT #43173]
4463. [bug] The dnstap system test failed on some systems.
cfg_obj_log(obj, ns_g_lctx,
ISC_LOG_INFO,
"'max-cache-size %d%%' "
- "- setting to %zuMB (out of %zuMB)",
+ "- setting to %" ISC_PRINT_QUADFORMAT "uMB "
+ "(out of %" ISC_PRINT_QUADFORMAT "uMB)",
max_cache_size_percent,
- max_cache_size / (1024*1024),
- (size_t) (totalphys / (1024*1024)));
+ (isc_uint64_t)(max_cache_size / (1024*1024)),
+ totalphys / (1024*1024));
}
}