Changeset 45397 in vbox
- Timestamp:
- Apr 8, 2013 8:37:31 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84823
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathParse.cpp.h
r45394 r45397 39 39 */ 40 40 uint32_t const cMaxComps = cbParsed < RT_UOFFSETOF(RTPATHPARSED, aComps[0xfff0]) 41 ? ( cbParsed - RT_UOFFSETOF(RTPATHPARSED, aComps)) / sizeof(pParsed->aComps[0])41 ? (uint32_t)((cbParsed - RT_UOFFSETOF(RTPATHPARSED, aComps)) / sizeof(pParsed->aComps[0])) 42 42 : 0xfff0; 43 43 uint32_t idxComp = 0;
Note:
See TracChangeset
for help on using the changeset viewer.