From 1c59e80aba9067335bef60222c6ebbd98fba8c44 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 26 Sep 2016 11:01:33 +0200 Subject: [PATCH] CHG: fix a "indent" warning. --- client/pm3_binlib.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/pm3_binlib.c b/client/pm3_binlib.c index 6360cb28..06fd39d2 100644 --- a/client/pm3_binlib.c +++ b/client/pm3_binlib.c @@ -120,8 +120,8 @@ static int l_unpack(lua_State *L) /** unpack(f,s, [init]) */ lua_pushnil(L); while (*f && done == 0) { - int c=*f++; - int N=1; + int c = *f++; + int N = 1; if (isdigit((int) (unsigned char) *f)) { 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,...) */ { - int i=2; - const char *f=luaL_checkstring(L,1); - int swap=0; + int i = 2; + const char *f = luaL_checkstring(L,1); + int swap = 0; luaL_Buffer b; luaL_buffinit(L,&b); while (*f) { - int c=*f++; - int N=1; + int c = *f++; + int N = 1; if (isdigit((int) (unsigned char) *f)) { N=0; -- 2.39.5