From 05385cdda8071869f42b1fda01393ff1dcd1f6fa Mon Sep 17 00:00:00 2001 From: javalikescript Date: Thu, 2 Jul 2020 22:33:49 +0200 Subject: [PATCH] Update Lua version check --- src/luv.c | 2 +- src/private.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/luv.c b/src/luv.c index f2eb7881..b5c5bf47 100644 --- a/src/luv.c +++ b/src/luv.c @@ -16,7 +16,7 @@ */ #include -#if (LUA_VERSION_NUM != 503) +#if (LUA_VERSION_NUM < 503) #include "compat-5.3.h" #endif #include "luv.h" diff --git a/src/private.h b/src/private.h index 5243b976..795d6715 100644 --- a/src/private.h +++ b/src/private.h @@ -2,7 +2,7 @@ #define LUV_PRIVATE_H #include -#if (LUA_VERSION_NUM != 503) +#if (LUA_VERSION_NUM < 503) #include "compat-5.3.h" #endif