2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

eliminate signed/unsigned char pointer warning

This commit is contained in:
Andreas Gustafsson 2000-10-19 23:40:31 +00:00
parent 801d49df37
commit 2baafa088c

View File

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: opt.c,v 1.2 2000/10/11 17:57:35 halley Exp $ */
/* $Id: opt.c,v 1.3 2000/10/19 23:40:31 gson Exp $ */
#include <config.h>
@ -118,7 +118,7 @@ isc_result_t
dns_opt_add(dns_rdata_t *rdata, dns_optlist_t *optlist,
isc_buffer_t *target)
{
char *base;
unsigned char *base;
unsigned int i;
REQUIRE(rdata->length == 0);