Skip to content

Commit 6a09a34

Browse files
author
ijsf@gmx-topmail.de
committed
Converted inconsistent and mixed CRLF (Windows) line endings into LF (Unix).
1 parent c1d3b11 commit 6a09a34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lapi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ LUA_API lua_Integer lua_tointegerW (lua_State *L, int idx) {
340340
if (tonumber(o, &n)) {
341341
lua_Integer res;
342342
lua_Number num = nvalue(o);
343-
num = fmod( num, 0x7fffffff ); // Wrap the number between -2,147,483,647 and 2,147,483,647
343+
num = fmod( num, 0x7fffffff ); // Wrap the number between -2,147,483,647 and 2,147,483,647
344344
lua_number2integer(res, num);
345345
return res;
346346
}

0 commit comments

Comments
 (0)