diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-17 23:01:32 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-17 23:01:32 +0200 |
commit | b8d02597e3dcea16b6aeda2d1aae11ca3812932a (patch) | |
tree | 28ddd0fa75789eb593da86a8639340ea2bfa8920 | |
parent | 2b0116803bd123d4e2486a221649fd6540a60c99 (diff) | |
download | busybox-w32-b8d02597e3dcea16b6aeda2d1aae11ca3812932a.tar.gz busybox-w32-b8d02597e3dcea16b6aeda2d1aae11ca3812932a.tar.bz2 busybox-w32-b8d02597e3dcea16b6aeda2d1aae11ca3812932a.zip |
md5: fix biuld failure on big-endian machines
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/md5.c b/libbb/md5.c index 6001a9c8e..051c8ede4 100644 --- a/libbb/md5.c +++ b/libbb/md5.c | |||
@@ -87,7 +87,7 @@ static void md5_process_block64(md5_ctx_t *ctx) | |||
87 | 0, 7, 14, 5, 12, 3, 10, 1, 8, 15, 6, 13, 4, 11, 2, 9 /* 4 */ | 87 | 0, 7, 14, 5, 12, 3, 10, 1, 8, 15, 6, 13, 4, 11, 2, 9 /* 4 */ |
88 | }; | 88 | }; |
89 | #endif | 89 | #endif |
90 | const uint32_t *words = (const void*) ctx->wbuffer; | 90 | uint32_t *words = (void*) ctx->wbuffer; |
91 | uint32_t A = ctx->A; | 91 | uint32_t A = ctx->A; |
92 | uint32_t B = ctx->B; | 92 | uint32_t B = ctx->B; |
93 | uint32_t C = ctx->C; | 93 | uint32_t C = ctx->C; |