aboutsummaryrefslogtreecommitdiff
path: root/libexec/rtld-elf/libmap.c
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2004-02-03 18:53:40 +0000
committerMax Khon <fjoe@FreeBSD.org>2004-02-03 18:53:40 +0000
commit6e918a4d5e2babeadec647b9fee31d166b16963d (patch)
treef95a2d0612486e43b45f6a155aefd45b236855d8 /libexec/rtld-elf/libmap.c
parentf073c60f73b0212a7c2cdde142b0e79e8a3981fa (diff)
downloadsrc-6e918a4d5e2babeadec647b9fee31d166b16963d.tar.gz
src-6e918a4d5e2babeadec647b9fee31d166b16963d.zip
Fix "warning: value computed is not used".
Found by: gcc 2.95.4 [FreeBSD]
Notes
Notes: svn path=/head/; revision=125397
Diffstat (limited to 'libexec/rtld-elf/libmap.c')
-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 56e04fdaf209..37a6d6beacd0 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);