diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-06-24 15:23:57 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-06-24 15:23:57 -0300 |
commit | cb1e451999cfed49a66859d8189a684839845e7f (patch) | |
tree | 6682db1abb0dbf03295541727c30b1f991d93f86 /luaconf.h | |
parent | 43cff79bf70aa227f99b5f381b9a39465567c092 (diff) | |
download | lua-cb1e451999cfed49a66859d8189a684839845e7f.tar.gz lua-cb1e451999cfed49a66859d8189a684839845e7f.tar.bz2 lua-cb1e451999cfed49a66859d8189a684839845e7f.zip |
detail
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.251 2015/05/20 17:39:23 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.252 2015/06/18 14:26:05 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -584,7 +584,7 @@ | |||
584 | #if !defined(LUA_USE_C89) | 584 | #if !defined(LUA_USE_C89) |
585 | #define l_sprintf(s,sz,f,i) snprintf(s,sz,f,i) | 585 | #define l_sprintf(s,sz,f,i) snprintf(s,sz,f,i) |
586 | #else | 586 | #else |
587 | #define l_sprintf(s,sz,f,i) sprintf(s,f,i) | 587 | #define l_sprintf(s,sz,f,i) ((void)(sz), sprintf(s,f,i)) |
588 | #endif | 588 | #endif |
589 | 589 | ||
590 | 590 | ||