VirtualBox

Ignore:
Timestamp:
Sep 3, 2011 8:01:52 PM (13 years ago)
Author:
vboxsync
Message:

build fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp

    r38619 r38620  
    28342834static void rtDwarfInfo_InitDie(PRTDWARFDIE pDie, PCRTDWARFDIEDESC pDieDesc)
    28352835{
    2836     uint32_t i = pDieDesc->cAttributes;
     2836    size_t i = pDieDesc->cAttributes;
    28372837    while (i-- > 0)
    28382838    {
     
    30303030        /* Look up the attribute in the descriptor and invoke the decoder. */
    30313031        PCRTDWARFATTRDESC pAttr = NULL;
    3032         uint32_t i = pDieDesc->cAttributes;
     3032        size_t i = pDieDesc->cAttributes;
    30333033        while (i-- > 0)
    30343034            if (pDieDesc->paAttributes[i].uAttr == uAttr)
     
    30993099    if (offAbbrev > UINT32_MAX)
    31003100        return VERR_DWARF_BAD_INFO;
    3101     rtDwarfAbbrev_SetUnitOffset(pThis, offAbbrev);
     3101    rtDwarfAbbrev_SetUnitOffset(pThis, (uint32_t)offAbbrev);
    31023102    pCursor->cbNativeAddr = cbNativeAddr;
    31033103
     
    31263126    pUnit->offAbbrev    = offAbbrev;
    31273127    pUnit->cbNativeAddr = cbNativeAddr;
    3128     pUnit->uDwarfVer    = uVer;
     3128    pUnit->uDwarfVer    = (uint8_t)uVer;
    31293129    RTListAppend(&pThis->CompileUnitList, &pUnit->Core.SiblingNode);
    31303130
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