mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix "warning: value computed is not used".
Found by: gcc 2.95.4 [FreeBSD]
This commit is contained in:
parent
f073c60f73
commit
6e918a4d5e
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue