fix signed comparison warning.

This commit is contained in:
christos 2008-07-28 17:40:33 +00:00
parent 6636374a5a
commit cd84a96731
1 changed files with 2 additions and 2 deletions

View File

@ -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
@ -104,7 +104,7 @@ makearglist(va_list ap)
static size_t ns = 0;
static char **np = NULL;
char **nnp;
int i = 0;
size_t i = 0;
do {
if (i >= ns) {