Skip to content
Snippets Groups Projects
Commit 5b37c19e authored by Richard Hartmann's avatar Richard Hartmann Committed by Herbert Xu
Browse files

crypto: ecb - Fix checkpatch errors

parent a501121e
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ static int crypto_ecb_crypt(struct blkcipher_desc *desc, ...@@ -55,7 +55,7 @@ static int crypto_ecb_crypt(struct blkcipher_desc *desc,
do { do {
fn(crypto_cipher_tfm(tfm), wdst, wsrc); fn(crypto_cipher_tfm(tfm), wdst, wsrc);
wsrc += bsize; wsrc += bsize;
wdst += bsize; wdst += bsize;
} while ((nbytes -= bsize) >= bsize); } while ((nbytes -= bsize) >= bsize);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment