aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-04-17 18:59:54 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-04-17 18:59:54 +0200
commit5d93525f30e8b2a422644b4ec09a82ebf04283cd (patch)
tree5bf4e5415aab99cff04b964254a25212ef39f6ca /src
parentb7848e4a7272e5319cf5794ec59ecaa955642e1c (diff)
parseconfig: Value stored to 'line' is never read
Make the function call with (void) as we don't care about the return code.
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 6e3ef3d6a..0670b5f5c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3247,7 +3247,7 @@ static int parseconfig(const char *filename,
break;
}
alloced_param=TRUE;
- line = (char*) unslashquote(line, param);
+ (void)unslashquote(line, param);
}
else {
param=line; /* parameter starts here */