lua

A copy of the Lua development repository
Log | Files | Refs | README

commit cb1e451999cfed49a66859d8189a684839845e7f
parent 43cff79bf70aa227f99b5f381b9a39465567c092
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 24 Jun 2015 15:23:32 -0300

detail

Diffstat:
Mluaconf.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/luaconf.h b/luaconf.h @@ -1,5 +1,5 @@ /* -** $Id: luaconf.h,v 1.251 2015/05/20 17:39:23 roberto Exp roberto $ +** $Id: luaconf.h,v 1.252 2015/06/18 14:26:05 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -584,7 +584,7 @@ #if !defined(LUA_USE_C89) #define l_sprintf(s,sz,f,i) snprintf(s,sz,f,i) #else -#define l_sprintf(s,sz,f,i) sprintf(s,f,i) +#define l_sprintf(s,sz,f,i) ((void)(sz), sprintf(s,f,i)) #endif