From d65f88d4082ef73a212d84879de837b360a1c3cc Mon Sep 17 00:00:00 2001 From: Federico Cerutti Date: Mon, 12 Nov 2018 15:12:01 +0100 Subject: [PATCH] Fixed indentation. Sorry, it's driving me nuts --- .../Chameleon-Mini/Application/TITagitstandard.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Firmware/Chameleon-Mini/Application/TITagitstandard.c b/Firmware/Chameleon-Mini/Application/TITagitstandard.c index b68a243..73784fb 100644 --- a/Firmware/Chameleon-Mini/Application/TITagitstandard.c +++ b/Firmware/Chameleon-Mini/Application/TITagitstandard.c @@ -183,13 +183,11 @@ void TITagitstandardSetUid(ConfigurationUidType Uid) void TITagitstandardFlipUid(ConfigurationUidType Uid) { - - uint8_t tmp , *tail ; - tail = Uid + ActiveConfiguration.UidSize - 1; - while ( Uid < tail ){ - tmp = *Uid; - *Uid++ = *tail ; - *tail-- = tmp; - } - + uint8_t tmp, *tail; + tail = Uid + ActiveConfiguration.UidSize - 1; + while ( Uid < tail ) { + tmp = *Uid; + *Uid++ = *tail; + *tail-- = tmp; + } } \ No newline at end of file