fish.c: avoid signed/unsigned-comparison warning

* fish/fish.c (script): Change type of index to "unsigned int".
This commit is contained in:
Jim Meyering
2009-08-21 14:58:20 +02:00
parent 7b2d9feb82
commit fbd7db9406

View File

@@ -517,7 +517,7 @@ script (int prompt)
char *cmd;
char *p, *pend;
char *argv[64];
int i, len;
int len;
int global_exit_on_error = !prompt;
int tilde_candidate;
@@ -581,7 +581,7 @@ script (int prompt)
if (len == 0) continue;
cmd = buf;
i = 0;
unsigned int i = 0;
if (buf[len] == '\0') {
argv[0] = NULL;
goto got_command;