From 77f7ea52a53dc4b37b074a1a0d917f438c433c4c Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 13 Dec 2017 12:56:00 +0100 Subject: [PATCH] Fix missing defined keyword --- src/opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opencl.c b/src/opencl.c index 81e17f83a..369d831eb 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -3169,7 +3169,7 @@ int opencl_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime) { need_nvml = true; - #if defined (_WIN) || (__CYGWIN__) + #if defined (_WIN) || defined (__CYGWIN__) need_nvapi = true; #endif }