diff options
Diffstat (limited to 'sys/boot/common/misc.c')
-rw-r--r-- | sys/boot/common/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/misc.c b/sys/boot/common/misc.c index f1a0491..c4c36ea 100644 --- a/sys/boot/common/misc.c +++ b/sys/boot/common/misc.c @@ -42,7 +42,7 @@ unargv(int argc, char *argv[]) int i; char *cp; - for (hlong = 0, i = 0, hlong = 0; i < argc; i++) + for (i = 0, hlong = 0; i < argc; i++) hlong += strlen(argv[i]) + 2; if(hlong == 0) |