From 694d28eb78dfad98e2e7ea670d93a153d8efd368 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Sat, 13 Apr 2013 23:31:06 +0200 Subject: Use tabs instead of spaces for indentation This completes our switch to the Linux kernel coding style. Note that we still use deeply nested constructs at some places which need to be fixed up later. Converted using the `Lindent` script from the Linux kernel code base, along with some manual fixes. Signed-off-by: Lukas Fleischer --- src/sha1.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/sha1.h') diff --git a/src/sha1.h b/src/sha1.h index 8f80bef..479c3b6 100644 --- a/src/sha1.h +++ b/src/sha1.h @@ -45,9 +45,9 @@ #define SHA1_DIGESTLEN 20 typedef struct { - uint32_t state[5]; - uint32_t count[2]; - uint8_t buffer[SHA1_BLOCKLEN]; + uint32_t state[5]; + uint32_t count[2]; + uint8_t buffer[SHA1_BLOCKLEN]; } sha1_ctx_t; void sha1_init(sha1_ctx_t *); -- cgit v1.2.3-54-g00ecf