fix signed comparison warning.
This commit is contained in:
parent
6636374a5a
commit
cd84a96731
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: run.c,v 1.12 2003/10/16 06:26:06 itojun Exp $ */
|
/* $NetBSD: run.c,v 1.13 2008/07/28 17:40:33 christos Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1991 Carnegie Mellon University
|
* Copyright (c) 1991 Carnegie Mellon University
|
||||||
|
@ -104,7 +104,7 @@ makearglist(va_list ap)
|
||||||
static size_t ns = 0;
|
static size_t ns = 0;
|
||||||
static char **np = NULL;
|
static char **np = NULL;
|
||||||
char **nnp;
|
char **nnp;
|
||||||
int i = 0;
|
size_t i = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (i >= ns) {
|
if (i >= ns) {
|
||||||
|
|
Loading…
Reference in New Issue