Changeset 40988 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- Apr 19, 2012 1:25:45 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strformatrt.cpp
r40938 r40988 49 49 #include <iprt/net.h> 50 50 #include <iprt/path.h> 51 #include <iprt/asm.h> 51 52 #define STRFORMAT_WITH_X86 52 53 #ifdef STRFORMAT_WITH_X86 … … 517 518 return RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, 518 519 "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", 519 u.pUuid->Gen.u32TimeLow,520 u.pUuid->Gen.u16TimeMid,521 u.pUuid->Gen.u16TimeHiAndVersion,520 RT_H2LE_U32(u.pUuid->Gen.u32TimeLow), 521 RT_H2LE_U16(u.pUuid->Gen.u16TimeMid), 522 RT_H2LE_U16(u.pUuid->Gen.u16TimeHiAndVersion), 522 523 u.pUuid->Gen.u8ClockSeqHiAndReserved, 523 524 u.pUuid->Gen.u8ClockSeqLow,
Note:
See TracChangeset
for help on using the changeset viewer.