VirtualBox

Ignore:
Timestamp:
Apr 1, 2019 1:35:07 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
129706
Message:

IPRT/dvm: s/offEnd/offLast - see coding guidelines on 'end' vs 'last'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp

    r77256 r77970  
    648648}
    649649
    650 static DECLCALLBACK(int) rtDvmFmtMbrVolumeQueryRange(RTDVMVOLUMEFMT hVolFmt, uint64_t *poffStart, uint64_t *poffEnd)
     650static DECLCALLBACK(int) rtDvmFmtMbrVolumeQueryRange(RTDVMVOLUMEFMT hVolFmt, uint64_t *poffStart, uint64_t *poffLast)
    651651{
    652652    PRTDVMVOLUMEFMTINTERNAL pVol = hVolFmt;
    653653    *poffStart = pVol->pEntry->offPart;
    654     *poffEnd   = pVol->pEntry->offPart + pVol->pEntry->cbPart - 1;
     654    *poffLast  = pVol->pEntry->offPart + pVol->pEntry->cbPart - 1;
    655655    return VINF_SUCCESS;
    656656}
Note: See TracChangeset for help on using the changeset viewer.

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