mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
CHG: fix a "indent" warning.
This commit is contained in:
parent
cf08edc97c
commit
1c59e80aba
1 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue