From 488d309804afbf92e0e2ebba7e80612e84edca21 Mon Sep 17 00:00:00 2001 From: marshmellow42 Date: Sun, 26 Mar 2017 17:35:16 -0400 Subject: [PATCH] fix indentation warning thanks to piwi for finding. --- client/cmdlfindala.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/cmdlfindala.c b/client/cmdlfindala.c index 1a1d2a06..8cb5f63d 100644 --- a/client/cmdlfindala.c +++ b/client/cmdlfindala.c @@ -34,16 +34,14 @@ int CmdIndalaDecode(const char *Cmd) { } if (!ans) { - if (g_debugMode) - PrintAndLog("Error1: %i",ans); + if (g_debugMode) PrintAndLog("Error1: %i",ans); return 0; } uint8_t invert=0; size_t size = DemodBufferLen; int startIdx = indala26decode(DemodBuffer, &size, &invert); if (startIdx < 0 || size > 224) { - if (g_debugMode) - PrintAndLog("Error2: %i",startIdx); + if (g_debugMode) PrintAndLog("Error2: %i",startIdx); return -1; } setDemodBuf(DemodBuffer, size, (size_t)startIdx); -- 2.39.2