CHG: fix a "indent" warning.

This commit is contained in:
iceman1001 2016-09-26 11:01:33 +02:00
parent cf08edc97c
commit 1c59e80aba

View file

@ -120,8 +120,8 @@ static int l_unpack(lua_State *L) /** unpack(f,s, [init]) */
lua_pushnil(L); lua_pushnil(L);
while (*f && done == 0) while (*f && done == 0)
{ {
int c=*f++; int c = *f++;
int N=1; int N = 1;
if (isdigit((int) (unsigned char) *f)) if (isdigit((int) (unsigned char) *f))
{ {
N=0; N=0;
@ -233,15 +233,15 @@ static int l_unpack(lua_State *L) /** unpack(f,s, [init]) */
static int l_pack(lua_State *L) /** pack(f,...) */ static int l_pack(lua_State *L) /** pack(f,...) */
{ {
int i=2; int i = 2;
const char *f=luaL_checkstring(L,1); const char *f = luaL_checkstring(L,1);
int swap=0; int swap = 0;
luaL_Buffer b; luaL_Buffer b;
luaL_buffinit(L,&b); luaL_buffinit(L,&b);
while (*f) while (*f)
{ {
int c=*f++; int c = *f++;
int N=1; int N = 1;
if (isdigit((int) (unsigned char) *f)) if (isdigit((int) (unsigned char) *f))
{ {
N=0; N=0;