Skip to content

Commit 35e9824

Browse files
committed
run tools/format-code.sh
1 parent 1ac7c08 commit 35e9824

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/sha1.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,13 @@ void sha1_process_bytes(const void *buffer, size_t len, struct sha1_ctx *ctx) {
215215
/* Process available complete blocks. */
216216
if (len >= 64) {
217217
#if !_STRING_ARCH_unaligned
218-
#define alignof(type) offsetof(struct { char c; type x; }, x)
218+
#define alignof(type) \
219+
offsetof( \
220+
struct { \
221+
char c; \
222+
type x; \
223+
}, \
224+
x)
219225
#define UNALIGNED_P(p) \
220226
(((size_t)p) % 4 != \
221227
0) //# define UNALIGNED_P(p) (((size_t) p) % alignof (md5_uint32) != 0)

0 commit comments

Comments
 (0)