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-w32-b102e12253078e8c0ebdeeb5e1893ea6a025a700.tar.gz
busybox-w32-b102e12253078e8c0ebdeeb5e1893ea6a025a700.tar.bz2
busybox-w32-b102e12253078e8c0ebdeeb5e1893ea6a025a700.zip
*: 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 {
1540 uint32_t C; 1540 uint32_t C;
1541 uint32_t D; 1541 uint32_t D;
1542 uint64_t total64; 1542 uint64_t total64;
1543 char wbuffer[64]; 1543 char wbuffer[64]; /* NB: always correctly aligned for uint64_t */
1544} md5_ctx_t; 1544} md5_ctx_t;
1545#else 1545#else
1546/* libbb/md5prime.c uses a bit different one: */ 1546/* libbb/md5prime.c uses a bit different one: */