From 3fe39dce5d1a0b0946878c66bbd7f694c5aa38ea Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Tue, 25 Jan 2000 18:13:53 +0000 Subject: Some busybox updates. See the changelog for details if you care. -Erik --- head.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'head.c') diff --git a/head.c b/head.c index 4e58bdcd7..bc7f35429 100644 --- a/head.c +++ b/head.c @@ -61,7 +61,7 @@ head_main(int argc, char **argv) switch (opt) { case 'n': tmplen = 0; - if (i++ < argc) + if (++i < argc) tmplen = atoi(argv[i]); if (tmplen < 1) usage(head_usage); @@ -105,4 +105,4 @@ head_main(int argc, char **argv) exit(0); } -/* $Id: head.c,v 1.5 2000/01/23 18:19:02 erik Exp $ */ +/* $Id: head.c,v 1.6 2000/01/25 18:13:53 erik Exp $ */ -- cgit v1.2.3