From: Arch Librarian Date: Mon, 20 Sep 2004 16:55:09 +0000 (+0000) Subject: Fixed cast macro in byteswap X-Git-Tag: 0.7.24ubuntu1~1217 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/59257a2194aa56dc0bb6d7bd150c8bfc67b5b53a Fixed cast macro in byteswap Author: jgg Date: 1999-11-14 01:47:55 GMT Fixed cast macro in byteswap --- diff --git a/apt-pkg/contrib/md5.cc b/apt-pkg/contrib/md5.cc index 2beaa1204..962d22066 100644 --- a/apt-pkg/contrib/md5.cc +++ b/apt-pkg/contrib/md5.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: md5.cc,v 1.6 1999/10/31 06:32:28 jgg Exp $ +// $Id: md5.cc,v 1.7 1999/11/14 01:47:55 jgg Exp $ /* ###################################################################### MD5Sum - MD5 Message Digest Algorithm. @@ -59,7 +59,7 @@ static void byteSwap(uint8_t *buf, unsigned words) do { - *buf++ = (UINT32)((unsigned)p[3] << 8 | p[2]) << 16 | + *buf++ = (uint32_t)((unsigned)p[3] << 8 | p[2]) << 16 | ((unsigned)p[1] << 8 | p[0]); p += 4; } while (--words);