From 76d5277a9d0ca3db58abc667de36e753ff91dfa9 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Tue, 15 May 2012 22:17:18 +0200 Subject: [PATCH] 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); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2