VirtualBox

Changeset 83845 in vbox for trunk/src/VBox/Runtime/r0drv


Ignore:
Timestamp:
Apr 20, 2020 9:39:33 AM (5 years ago)
Author:
vboxsync
Message:

IPRT/dbgkrnlinfo-r0drv-darwin.cpp: VC++ 14.1 warnings. bugref:8489

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp

    r82968 r83845  
    502502                    {
    503503                        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);
    505506                        RETURN_VERR_BAD_EXE_FORMAT;
    506507                    }
     
    510511                    {
    511512                        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);
    514516                        RETURN_VERR_BAD_EXE_FORMAT;
    515517                    }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette