Changeset 4372 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Aug 24, 2007 9:21:51 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23921
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/cfgldr.cpp
r4337 r4372 593 593 594 594 // read from the file 595 unsignedcbRead = 0;595 size_t cbRead = 0; 596 596 rc = RTFileRead (m_hFileHandle, toFill, maxToRead, &cbRead); 597 597 AssertRC (rc); … … 603 603 AssertRC (rc); 604 604 605 return cbRead;605 return (unsigned int)cbRead; 606 606 } 607 607
Note:
See TracChangeset
for help on using the changeset viewer.