From e1deabc0eb11451828e2e8dd18c0d723b3a7eff8 Mon Sep 17 00:00:00 2001 From: iceman1001 <iceman@iuse.se> Date: Mon, 26 Sep 2016 11:04:04 +0200 Subject: [PATCH 1/1] CHG: fixes a "indent" warning --- armsrc/des.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/des.c b/armsrc/des.c index 1ff04184..6b3bea9b 100644 --- a/armsrc/des.c +++ b/armsrc/des.c @@ -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; -- 2.39.5