Changeset 8683 in vbox for trunk/src/VBox/Main/VirtualBoxBase.cpp
- Timestamp:
- May 7, 2008 9:05:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/VirtualBoxBase.cpp
r8668 r8683 614 614 bool preserve = ((uintptr_t) RTTlsGet (MultiResult::sCounter)) > 0; 615 615 616 LogRel (("ERROR [COM]: aRC=% #08x aIID={%Vuuid} aComponent={%ls} aText={%ls} "616 LogRel (("ERROR [COM]: aRC=%Rhrc (%#08x) aIID={%RTuuid} aComponent={%ls} aText={%ls} " 617 617 "aWarning=%RTbool, preserve=%RTbool\n", 618 aResultCode, &aIID, aComponent.raw(), aText.raw(), aWarning,618 aResultCode, aResultCode, &aIID, aComponent.raw(), aText.raw(), aWarning, 619 619 preserve)); 620 620 … … 1151 1151 int vrc = RTUuidFromStr (&uuid, buf); 1152 1152 if (RT_FAILURE (vrc)) 1153 throw ENoConversion (FmtStr ("'%s' is not Guid (% Vrc)", aValue, vrc));1153 throw ENoConversion (FmtStr ("'%s' is not Guid (%Rrc)", aValue, vrc)); 1154 1154 1155 1155 return com::Guid (uuid);
Note:
See TracChangeset
for help on using the changeset viewer.