Changeset 46248 in vbox
- Timestamp:
- May 23, 2013 7:20:58 PM (12 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r46199 r46248 1147 1147 common/misc/sanity-c.c \ 1148 1148 common/misc/sanity-cpp.cpp \ 1149 common/misc/sg.cpp \ 1149 1150 common/path/rtPathVolumeSpecLen.cpp \ 1150 1151 common/path/RTPathAbsDup.cpp \ -
trunk/src/VBox/Runtime/r3/fileio.cpp
r46245 r46248 222 222 RTR3DECL(int) RTFileSgReadAt(RTFILE hFile, RTFOFF off, PRTSGBUF pSgBuf, size_t cbToRead, size_t *pcbRead) 223 223 { 224 int rc ;224 int rc = VINF_SUCCESS; 225 225 size_t cbRead = 0; 226 226 … … 285 285 RTR3DECL(int) RTFileSgWriteAt(RTFILE hFile, RTFOFF off, PRTSGBUF pSgBuf, size_t cbToWrite, size_t *pcbWritten) 286 286 { 287 int rc ;287 int rc = VINF_SUCCESS; 288 288 size_t cbWritten = 0; 289 289
Note:
See TracChangeset
for help on using the changeset viewer.