From 207e5bbc5367e247e63f225fbc99f305922216a0 Mon Sep 17 00:00:00 2001 From: Angel Date: Sun, 16 Apr 2023 14:29:58 -0400 Subject: [PATCH] Final cleanup --- client/src/cmdlfparadox.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/src/cmdlfparadox.c b/client/src/cmdlfparadox.c index 79cebb86d..3276333d0 100644 --- a/client/src/cmdlfparadox.c +++ b/client/src/cmdlfparadox.c @@ -20,7 +20,6 @@ #include #include #include -#include #include "commonutil.h" // ARRAYLEN #include "cmdparser.h" // command_t #include "comms.h" @@ -309,7 +308,7 @@ static int CmdParadoxClone(const char *Cmd) { blocks[i] = bytes_to_num(raw + ((i - 1) * 4), sizeof(uint32_t)); } } else { - //This function generates the bitstream and puts it in blocks. it returns the crc but we don't need it here + //This function generates the bitstream and puts it in blocks. it returns the crc, but we don't need it here GetParadoxBits(fc, cn, blocks); } @@ -389,7 +388,7 @@ static int CmdParadoxSim(const char *Cmd) { PrintAndLogEx(ERR, "Data must be 12 bytes (24 HEX characters) %d", raw_len); return PM3_EINVARG; } - } else{ + } else { uint32_t blocks[4] = {0}; GetParadoxBits(fc,cn,blocks); for (uint8_t i = 1; i < ARRAYLEN(blocks); i++) {