VirtualBox

Ignore:
Timestamp:
Nov 10, 2008 10:43:16 PM (16 years ago)
Author:
vboxsync
Message:

md5.cpp: shut up 64-bit MSC warning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/checksum/md5.cpp

    r8155 r14048  
    112112    if ((ctx->bits[0] = t + ((uint32_t) len << 3)) < t)
    113113        ctx->bits[1]++;         /* Carry from low to high */
    114     ctx->bits[1] += len >> 29;
     114    ctx->bits[1] += (uint32_t)(len >> 29);
    115115
    116116    t = (t >> 3) & 0x3f;        /* Bytes already in shsInfo->data */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette