mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 19:38:52 +08:00
CHG: fixes a "indent" warning
This commit is contained in:
parent
1c59e80aba
commit
e1deabc0eb
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ void permute(const uint8_t *ptable, const uint8_t *in, uint8_t *out){
|
|||
for(byte=0; byte<ob; ++byte){
|
||||
uint8_t x,t=0;
|
||||
for(bit=0; bit<8; ++bit){
|
||||
x=*ptable++ -1 ;
|
||||
x = *ptable++ - 1;
|
||||
t<<=1;
|
||||
if((in[x/8]) & (0x80>>(x%8)) ){
|
||||
t|=0x01;
|
||||
|
|
Loading…
Add table
Reference in a new issue