Changeset 48 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 15, 2007 6:29:24 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 17477
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMLdr.cpp
r23 r48 617 617 { 618 618 if (pszSymbol < (const char*)(void*)0x10000) 619 AssertMsg(rc, ("Couldn't symbol '%u' in module '%s'\n", (unsigned) pszSymbol, pszModule));619 AssertMsg(rc, ("Couldn't symbol '%u' in module '%s'\n", (unsigned)(uintptr_t)pszSymbol, pszModule)); 620 620 else 621 621 AssertMsg(rc, ("Couldn't symbol '%s' in module '%s'\n", pszSymbol, pszModule)); … … 761 761 { 762 762 if (pszSymbol < (const char*)(void*)0x10000) 763 AssertMsg(rc, ("Couldn't symbol '%u' in module '%s'\n", (unsigned) pszSymbol, pszModule));763 AssertMsg(rc, ("Couldn't symbol '%u' in module '%s'\n", (unsigned)(uintptr_t)pszSymbol, pszModule)); 764 764 else 765 765 AssertMsg(rc, ("Couldn't symbol '%s' in module '%s'\n", pszSymbol, pszModule));
Note:
See TracChangeset
for help on using the changeset viewer.