From 4f5b58151b96992b4434717b56813e9aa06fcb3b Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 30 Aug 1995 17:59:59 +0000 Subject: Change my parse fix from 'return argc' to 'return 0'. Pointed by: davidg --- lib/libedit/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libedit') diff --git a/lib/libedit/parse.c b/lib/libedit/parse.c index 140a71d..5f648a1 100644 --- a/lib/libedit/parse.c +++ b/lib/libedit/parse.c @@ -98,7 +98,7 @@ el_parse(el, argc, argv) int i; if (argc < 1) - return argc; + return 0; for (ptr = argv[0]; *ptr && *ptr != ':'; ptr++) continue; -- cgit v1.1