X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fsha1.c;h=dd4009834bf287e7a38d1d643aff1d3ee3476e0c;hb=7900b7b9b9956661d536223226c462c7f48fa40a;hp=4b28266af12faaf952a880228d65d2866705c570;hpb=421d9e59416850968707dfec7a665cb0211b8d1c;p=oweals%2Fbusybox.git diff --git a/libbb/sha1.c b/libbb/sha1.c index 4b28266af..dd4009834 100644 --- a/libbb/sha1.c +++ b/libbb/sha1.c @@ -153,7 +153,7 @@ void *sha1_end(void *resbuf, sha1_ctx_t *ctx) #else static uint32_t mask[4] = { 0x00000000, 0x000000ff, 0x0000ffff, 0x00ffffff }; static uint32_t bits[4] = { 0x00000080, 0x00008000, 0x00800000, 0x80000000 }; -#endif /* __BYTE_ORDER */ +#endif uint8_t *hval = resbuf; uint32_t i, cnt = (uint32_t) (ctx->count[0] & SHA1_MASK);