1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

lint: fix uselessAssignmentPtrArg

This commit is contained in:
Hinnerk van Bruinehsen 2014-10-16 16:37:58 +02:00
parent 3114f362df
commit ff6a7febc6

View File

@ -224,6 +224,8 @@ int skipjack_encrypt(cipher_context_t *context, uint8_t *plainBlock,
s2cM(w3, cipherBlock);
cipherBlock += 2;
s2cM(w4, cipherBlock);
/* cppcheck: may introduce timing bias if left out */
/* cppcheck-suppress uselessAssignmentPtrArg */
cipherBlock += 2;
return 1;