diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-08-26 09:19:57 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-08-26 09:19:57 +0200 |
commit | cf81a256ccb173cc0752f27ac99920cdc710c252 (patch) | |
tree | b5dc482f76166cb0635d68a97fd824bbc9499149 /src | |
parent | 42237f52084d203dccddcb58b452d676fd8d70fe (diff) |
Indent with tabs
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |