aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-10-18 11:39:47 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2010-10-18 11:39:47 +0200
commitb102e12253078e8c0ebdeeb5e1893ea6a025a700 (patch)
tree63ad7f83781bea9185d72b75c28a9cb19cb04515 /include
parent06f719fd79fe15ce6fd5431bc58fcb22851de24d (diff)
downloadbusybox-b102e12253078e8c0ebdeeb5e1893ea6a025a700.tar.gz
*: use SWAP_BE64 instead of open-coding it
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index dec4e3af5..b16157d46 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1540,7 +1540,7 @@ typedef struct md5_ctx_t {
uint32_t C;
uint32_t D;
uint64_t total64;
- char wbuffer[64];
+ char wbuffer[64]; /* NB: always correctly aligned for uint64_t */
} md5_ctx_t;
#else
/* libbb/md5prime.c uses a bit different one: */