aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-08-26 09:19:57 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-08-26 09:19:57 +0200
commitcf81a256ccb173cc0752f27ac99920cdc710c252 (patch)
treeb5dc482f76166cb0635d68a97fd824bbc9499149 /src
parent42237f52084d203dccddcb58b452d676fd8d70fe (diff)
Indent with tabs
Diffstat (limited to 'src')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 3e61b29..ddfad7b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -154,9 +154,9 @@ process(const char *s, size_t n)
int off = dgst[19] & 0x0F;
uint32_t binc = (dgst[off + 0] & 0x7F) << 24
- | (dgst[off + 1] & 0xFF) << 16
- | (dgst[off + 2] & 0xFF) << 8
- | (dgst[off + 3] & 0xFF) << 0;
+ | (dgst[off + 1] & 0xFF) << 16
+ | (dgst[off + 2] & 0xFF) << 8
+ | (dgst[off + 3] & 0xFF) << 0;
printf("%0*" PRId32 "\n", digits, binc % pow32(10, digits));
if (key != _key)