Change my parse fix from 'return argc' to 'return 0'.

Pointed by: davidg
This commit is contained in:
Andrey A. Chernov 1995-08-30 17:59:59 +00:00
parent 0f895305a1
commit b247e376cd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10482

View File

@ -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;