Changeset 13817 in vbox
- Timestamp:
- Nov 4, 2008 10:54:25 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38808
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMLdr.cpp
r13816 r13817 643 643 else 644 644 { 645 if ( pszSymbol < (const char *)(void *)0x10000)645 if ((uintptr_t)pszSymbol < 0x10000) 646 646 AssertMsg(rc, ("Couldn't symbol '%u' in module '%s'\n", (unsigned)(uintptr_t)pszSymbol, pszModule)); 647 647 else … … 787 787 else 788 788 { 789 if ( pszSymbol < (const char*)(void*)0x10000)789 if ((uintptr_t)pszSymbol < 0x10000) 790 790 AssertMsg(rc, ("Couldn't symbol '%u' in module '%s'\n", (unsigned)(uintptr_t)pszSymbol, pszModule)); 791 791 else
Note:
See TracChangeset
for help on using the changeset viewer.