From acee756e3856e183012a63b86908bff76c8ceeb0 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Thu, 23 Mar 2000 22:51:53 +0000 Subject: [PATCH] lint --- bin/named/logconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/named/logconf.c b/bin/named/logconf.c index ff598b4aac..042380b837 100644 --- a/bin/named/logconf.c +++ b/bin/named/logconf.c @@ -83,7 +83,7 @@ channel_fromconf(dns_c_logchan_t *cchan, isc_logconfig_t *lctx) type = ISC_LOG_TOFILE; { const char *path = NULL; - int versions = ISC_LOG_ROLLNEVER; + isc_uint32_t versions = ISC_LOG_ROLLNEVER; isc_uint32_t size = 0; (void) dns_c_logchan_getpath(cchan, &path); if (path == NULL) { @@ -99,7 +99,7 @@ channel_fromconf(dns_c_logchan_t *cchan, isc_logconfig_t *lctx) (void) dns_c_logchan_getsize(cchan, &size); dest.file.stream = NULL; dest.file.name = cchan->u.filec.path; - dest.file.versions = versions; + dest.file.versions = (int)versions; dest.file.maximum_size = size; } break;