- Timestamp:
- Nov 10, 2017 5:59:11 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp
r69648 r69650 672 672 || pSym->n_sect > pThis->cSections) ) 673 673 { 674 printf("RTR0DbgKrnlInfoOpen: %s: Abs symbol #%u '%s' problem: n_sect (%u) is not MACHO_NO_SECT \n",675 pszKernelFile, iSym, pszSym );674 printf("RTR0DbgKrnlInfoOpen: %s: Abs symbol #%u '%s' problem: n_sect (%u) is not MACHO_NO_SECT (cSections is %u)\n", 675 pszKernelFile, iSym, pszSym, pSym->n_sect, pThis->cSections); 676 676 RETURN_VERR_BAD_EXE_FORMAT; 677 677 } … … 1152 1152 { "/mach_kernel", VERR_WRONG_ORDER }, 1153 1153 }; 1154 int rc ;1154 int rc = VERR_WRONG_ORDER; /* shut up stupid MSC */ 1155 1155 for (uint32_t i = 0; i < RT_ELEMENTS(aKernels); i++) 1156 1156 {
Note:
See TracChangeset
for help on using the changeset viewer.