2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

silence compiler warnings

This commit is contained in:
Mark Andrews
2005-03-18 04:31:01 +00:00
parent e7c286974e
commit 2da53322f3
2 changed files with 11 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rdata.c,v 1.185 2004/10/06 05:56:29 marka Exp $ */
/* $Id: rdata.c,v 1.186 2005/03/18 04:31:00 marka Exp $ */
#include <config.h>
#include <ctype.h>
@@ -1213,7 +1213,7 @@ name_tobuffer(dns_name_t *name, isc_buffer_t *target) {
static isc_uint32_t
uint32_fromregion(isc_region_t *region) {
unsigned long value;
isc_uint32_t value;
REQUIRE(region->length >= 4);
value = region->base[0] << 24;