From 6e918a4d5e2babeadec647b9fee31d166b16963d Mon Sep 17 00:00:00 2001 From: Max Khon Date: Tue, 3 Feb 2004 18:53:40 +0000 Subject: [PATCH] Fix "warning: value computed is not used". Found by: gcc 2.95.4 [FreeBSD] --- libexec/rtld-elf/libmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);