mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-10 10:11:39 -04:00
eliminate signed/unsigned char pointer warning
This commit is contained in:
parent
801d49df37
commit
2baafa088c
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue