Fix "warning: value computed is not used".

Found by:	gcc 2.95.4 [FreeBSD]
This commit is contained in:
Max Khon 2004-02-03 18:53:40 +00:00
parent f073c60f73
commit 6e918a4d5e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125397

View File

@ -96,7 +96,7 @@ lm_init (void)
* There should be nothing except whitespace or comment
from this point to the end of the line.
*/
while(isspace(*cp)) *cp++;
while(isspace(*cp)) cp++;
if (!iseol(*cp)) continue;
strcpy(prog, c);