summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/lua
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/lua')
-rw-r--r--Build/source/texk/web2c/luatexdir/lua/loslibext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/luatexdir/lua/loslibext.c b/Build/source/texk/web2c/luatexdir/lua/loslibext.c
index 5bc46fca400..87c290e6a3f 100644
--- a/Build/source/texk/web2c/luatexdir/lua/loslibext.c
+++ b/Build/source/texk/web2c/luatexdir/lua/loslibext.c
@@ -1,6 +1,6 @@
/* loslibext.c
- Copyright 2006-2008 Taco Hoekwater <taco@luatex.org>
+ Copyright 2006-2012 Taco Hoekwater <taco@luatex.org>
This file is part of LuaTeX.
@@ -880,7 +880,7 @@ static int os_gettimeofday(lua_State * L)
v = (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0;
# else
FILETIME ft;
- unsigned __int64 tmpres = 0;
+ uint64_t tmpres = 0;
GetSystemTimeAsFileTime(&ft);