Changeset 83845 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Apr 20, 2020 9:39:33 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp
r82968 r83845 502 502 { 503 503 LOG_BAD_SYM("RTR0DbgKrnlInfoOpen: %s: Symbol #%u '%s' problem: n_value (%#llx) < section addr (%#llx)\n", 504 pszKernelFile, iSym, pszSym, pSym->n_value, pThis->apSections[pSym->n_sect - 1]->addr); 504 pszKernelFile, iSym, pszSym, (uint64_t)pSym->n_value, 505 (uint64_t)pThis->apSections[pSym->n_sect - 1]->addr); 505 506 RETURN_VERR_BAD_EXE_FORMAT; 506 507 } … … 510 511 { 511 512 LOG_BAD_SYM("RTR0DbgKrnlInfoOpen: %s: Symbol #%u '%s' problem: n_value (%#llx) >= end of section (%#llx + %#llx)\n", 512 pszKernelFile, iSym, pszSym, pSym->n_value, pThis->apSections[pSym->n_sect - 1]->addr, 513 pThis->apSections[pSym->n_sect - 1]->size); 513 pszKernelFile, iSym, pszSym, (uint64_t)pSym->n_value, 514 (uint64_t)pThis->apSections[pSym->n_sect - 1]->addr, 515 (uint64_t)pThis->apSections[pSym->n_sect - 1]->size); 514 516 RETURN_VERR_BAD_EXE_FORMAT; 515 517 }
Note:
See TracChangeset
for help on using the changeset viewer.