Skip to content

Commit

Permalink
Merge pull request #504 from javalikescript/master
Browse files Browse the repository at this point in the history
Update Lua version check
  • Loading branch information
squeek502 authored Jul 12, 2020
2 parents ea33bf3 + 05385cd commit 741db3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/luv.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

#include <lua.h>
#if (LUA_VERSION_NUM != 503)
#if (LUA_VERSION_NUM < 503)
#include "compat-5.3.h"
#endif
#include "luv.h"
Expand Down
2 changes: 1 addition & 1 deletion src/private.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define LUV_PRIVATE_H

#include <lua.h>
#if (LUA_VERSION_NUM != 503)
#if (LUA_VERSION_NUM < 503)
#include "compat-5.3.h"
#endif

Expand Down

0 comments on commit 741db3d

Please sign in to comment.