summaryrefslogtreecommitdiffstats
path: root/crypto/async
diff options
context:
space:
mode:
authorViktor Szakats <vszakats@users.noreply.github.com>2016-02-13 15:20:47 +0100
committerRich Salz <rsalz@openssl.org>2016-02-13 09:36:59 -0500
commit1b3cddff2b61f084e0ebb871a33baec92d4b1d21 (patch)
treeb7080a07eda65f28d9916c7c6fd78788644de78f /crypto/async
parent3af104f3ccdb3ec3d1dec056ff71ccc2bb000e56 (diff)
async_win.c: remove unused variable
Silencing this: crypto/async/arch/async_win.c: In function 'async_fibre_init_dispatcher': crypto/async/arch/async_win.c:112:12: warning: unused variable 'dispatcher' [-Wunused-variable] LPVOID dispatcher; ^ Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/async')
-rw-r--r--crypto/async/arch/async_win.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/async/arch/async_win.c b/crypto/async/arch/async_win.c
index 3f3a005cc2..e862e2548f 100644
--- a/crypto/async/arch/async_win.c
+++ b/crypto/async/arch/async_win.c
@@ -109,8 +109,6 @@ void async_global_cleanup(void)
int async_fibre_init_dispatcher(async_fibre *fibre)
{
- LPVOID dispatcher;
-
fibre->fibre = ConvertThreadToFiber(NULL);
if (fibre->fibre == NULL) {
fibre->converted = 0;