diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2004-02-08 23:39:36 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2004-02-08 23:39:36 +0000 |
commit | 627c358ce1287125f08bcea706dec75aa35e0905 (patch) | |
tree | 68cb4bfdb580659a02d4de4b78d1d1c40e7fbbe3 /usr.sbin/bind | |
parent | 71c71528c29c628255159f31e650854ce6447dc9 (diff) |
back out last change since it was unnecessary, the last bind merge fixed the deeper issue
Diffstat (limited to 'usr.sbin/bind')
-rw-r--r-- | usr.sbin/bind/lib/isccfg/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bind/lib/isccfg/parser.c b/usr.sbin/bind/lib/isccfg/parser.c index cc5717c6ac4..c93af6f7d44 100644 --- a/usr.sbin/bind/lib/isccfg/parser.c +++ b/usr.sbin/bind/lib/isccfg/parser.c @@ -1664,7 +1664,7 @@ static void print_uint64(cfg_printer_t *pctx, cfg_obj_t *obj) { char buf[32]; snprintf(buf, sizeof(buf), "%" ISC_PRINT_QUADFORMAT "u", - (isc_uint64_t)obj->value.uint64); + obj->value.uint64); print_cstr(pctx, buf); } |