From: Andre Noll Date: Tue, 15 May 2012 20:17:18 +0000 (+0200) Subject: client: Remove pointless assignment. X-Git-Tag: v0.4.11~7^2~3 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=76d5277a9d0ca3db58abc667de36e753ff91dfa9 client: Remove pointless assignment. client.c:310:2: warning: Value stored to 'ret' is never read ret = i9e_extract_completions(ci->word, sl, &cr->matches); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --- diff --git a/client.c b/client.c index 5f511708..d98c6327 100644 --- a/client.c +++ b/client.c @@ -307,7 +307,7 @@ static void setatt_completer(struct i9e_completion_info *ci, free(orig); } sl[2 * num_atts] = NULL; - ret = i9e_extract_completions(ci->word, sl, &cr->matches); + i9e_extract_completions(ci->word, sl, &cr->matches); out: free(buf); free_argv(sl);