[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.3.0 (work1) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 8 Jul 2013 10:37:22 -0300
> > i586-mingw32msvc-gcc -O2 -Wall -Wextra -DLUA_COMPAT_ALL -c -o lvm.o lvm.c
> > lvm.c: In function ‘luaV_tostring’:
> > lvm.c:57:7: warning: unknown conversion type character ‘l’ in format [-Wformat]
>
> This is strange... "%ld" is quite standard (C89).
My bad... The problem is again the "ll" (that format item is "%lld", not
"%ld"). Probably this change in luaconf.h solves it:
527c527
< #define LUA_INTEGER_FRMLEN "ll"
---
> #define LUA_INTEGER_FRMLEN "I64"
-- Roberto