Changeset 27800 in vbox for trunk/src/VBox/Runtime/common/checksum/md5.cpp
- Timestamp:
- Mar 29, 2010 7:56:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/md5.cpp
r22092 r27800 57 57 58 58 #include <iprt/string.h> /* for memcpy() */ 59 #if defined(RT_BIG_ENDIAN) 60 # include <iprt/asm.h> /* RT_LE2H_U32 uses ASMByteSwapU32. */ 61 #endif 59 62 60 63 … … 196 199 uint32_t t; 197 200 do { 198 t = *buf 201 t = *buf; 199 202 t = RT_LE2H_U32(t); 200 203 *buf = t;
Note:
See TracChangeset
for help on using the changeset viewer.