Fixed cast macro in byteswap
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:55:09 +0000 (16:55 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:55:09 +0000 (16:55 +0000)
Author: jgg
Date: 1999-11-14 01:47:55 GMT
Fixed cast macro in byteswap

apt-pkg/contrib/md5.cc

index 2beaa12..962d220 100644 (file)
@@ -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);