Skip to content

Commit 30fed34

Browse files
Ryand1234herbertx
authored andcommitted
crypto: aegis128 - Fix indentation issue in crypto_aegis128_process_crypt()
The code in crypto_aegis128_process_crypt() had an indentation issue where spaces were used instead of tabs. This commit corrects the indentation to use tabs, adhering to the Linux kernel coding style guidelines. Issue reported by checkpatch: - ERROR: code indent should use tabs where possible No functional changes are intended. Signed-off-by: Riyan Dhiman <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent c398cb8 commit 30fed34

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crypto/aegis128-core.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,9 @@ static __always_inline
323323
int crypto_aegis128_process_crypt(struct aegis_state *state,
324324
struct skcipher_walk *walk,
325325
void (*crypt)(struct aegis_state *state,
326-
u8 *dst, const u8 *src,
327-
unsigned int size))
326+
u8 *dst,
327+
const u8 *src,
328+
unsigned int size))
328329
{
329330
int err = 0;
330331

0 commit comments

Comments
 (0)