Changeset 80585 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Sep 4, 2019 2:05:50 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133105
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/fileio-r0drv-darwin.cpp
r76553 r80585 236 236 237 237 238 RTDECL(int) RTFile GetSize(RTFILE hFile, uint64_t *pcbSize)238 RTDECL(int) RTFileQuerySize(RTFILE hFile, uint64_t *pcbSize) 239 239 { 240 240 RTFILEINT *pThis = hFile; … … 288 288 { 289 289 uint64_t cbFile = 0; 290 int rc = RTFile GetSize(hFile, &cbFile);290 int rc = RTFileQuerySize(hFile, &cbFile); 291 291 if (RT_SUCCESS(rc)) 292 292 offNew = cbFile + offSeek;
Note:
See TracChangeset
for help on using the changeset viewer.