Commit 54eac519 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/camellia: Fix indention & whitespace

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9a18247e
......@@ -145,7 +145,7 @@ static uint64_t F(uint64_t F_IN, uint64_t KE)
uint8_t y[8];
KE ^= F_IN;
AV_WB64(y,KE);
KE=SP[0][y[0]]^SP[1][y[1]]^SP[2][y[2]]^SP[3][y[3]]^SP[4][y[4]]^SP[5][y[5]]^SP[6][y[6]]^SP[7][y[7]];
KE=SP[0][y[0]] ^ SP[1][y[1]] ^ SP[2][y[2]] ^ SP[3][y[3]] ^ SP[4][y[4]] ^ SP[5][y[5]] ^ SP[6][y[6]] ^ SP[7][y[7]];
return KE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment