aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/lua/patches/012-lnum-fix-ltle-relational-operators.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/utils/lua/patches/012-lnum-fix-ltle-relational-operators.patch')
-rw-r--r--package/utils/lua/patches/012-lnum-fix-ltle-relational-operators.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/utils/lua/patches/012-lnum-fix-ltle-relational-operators.patch b/package/utils/lua/patches/012-lnum-fix-ltle-relational-operators.patch
index 937fc137e8..3d3d6850e2 100644
--- a/package/utils/lua/patches/012-lnum-fix-ltle-relational-operators.patch
+++ b/package/utils/lua/patches/012-lnum-fix-ltle-relational-operators.patch
@@ -1,6 +1,6 @@
--- a/src/lvm.c
+++ b/src/lvm.c
-@@ -284,7 +284,8 @@ int luaV_lessthan (lua_State *L, const T
+@@ -281,7 +281,8 @@ int luaV_lessthan (lua_State *L, const T
else
return luai_numlt( nvalue_fast(l), cast_num(ivalue(r)) );
@@ -10,7 +10,7 @@
return res;
return luaG_ordererror(L, l, r);
-@@ -322,7 +323,8 @@ static int lessequal (lua_State *L, cons
+@@ -319,7 +320,8 @@ static int lessequal (lua_State *L, cons
else
return luai_numle( nvalue_fast(l), cast_num(ivalue(r)) );