summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorfjoe <fjoe@FreeBSD.org>2004-02-03 18:53:40 +0000
committerfjoe <fjoe@FreeBSD.org>2004-02-03 18:53:40 +0000
commit42373eaca91834080587faf943dfe287c8fb5538 (patch)
treef95a2d0612486e43b45f6a155aefd45b236855d8 /libexec
parentde3407d02868da17b84be20a37bee2f9d4b5ad99 (diff)
downloadFreeBSD-src-42373eaca91834080587faf943dfe287c8fb5538.zip
FreeBSD-src-42373eaca91834080587faf943dfe287c8fb5538.tar.gz
Fix "warning: value computed is not used".
Found by: gcc 2.95.4 [FreeBSD]
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/libmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rtld-elf/libmap.c b/libexec/rtld-elf/libmap.c
index 56e04fd..37a6d6b 100644
--- a/libexec/rtld-elf/libmap.c
+++ b/libexec/rtld-elf/libmap.c
@@ -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);
OpenPOWER on IntegriCloud