summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lua/lua_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_config.c b/src/lua/lua_config.c
index 5a6bac8bc..9fd657e6e 100644
--- a/src/lua/lua_config.c
+++ b/src/lua/lua_config.c
@@ -2942,7 +2942,7 @@ lua_config_has_torch (lua_State *L)
lua_pushboolean (L, false);
(void)crypto_ctx;
#else
- if (crypto_ctx->cpu_config & CPUID_SSE41) {
+ if (crypto_ctx->cpu_config & CPUID_SSE2) {
lua_pushboolean (L, true);
}
else {