summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/lua
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2012-07-26 06:33:04 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2012-07-26 06:33:04 +0000
commitd84171379c3fd670e89155dbb8860f0b38d964d8 (patch)
tree33212471a9ddba85eadd7fc3142fd8586d0b084b /Build/source/texk/web2c/luatexdir/lua
parent9f9853cc00d8112434d185ec2adebeba44a2d413 (diff)
luaTeX: Use uint64_t and PRIu64
git-svn-id: svn://tug.org/texlive/trunk@27166 c570f23f-e606-0410-a88d-b1316a301751
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);