From cb1e451999cfed49a66859d8189a684839845e7f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 24 Jun 2015 15:23:57 -0300 Subject: [PATCH] detail --- luaconf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luaconf.h b/luaconf.h index 63000f08..6f8441a4 100644 --- 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