Changeset 39032 in vbox for trunk/src/VBox/Runtime/common/vfs
- Timestamp:
- Oct 19, 2011 11:08:50 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 74450
- Location:
- trunk/src/VBox/Runtime/common/vfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsmemory.cpp
r36555 r39032 548 548 uint32_t *pfRetEvents) 549 549 { 550 PRTVFSMEMFILE pThis = (PRTVFSMEMFILE)pvThis; 551 int rc; 552 550 int rc; 553 551 if (fEvents != RTPOLL_EVT_ERROR) 554 552 { -
trunk/src/VBox/Runtime/common/vfs/vfsstdfile.cpp
r37596 r39032 253 253 uint32_t *pfRetEvents) 254 254 { 255 PRTVFSSTDFILE pThis = (PRTVFSSTDFILE)pvThis; 256 int rc; 257 255 int rc; 258 256 if (fEvents != RTPOLL_EVT_ERROR) 259 257 { … … 345 343 static DECLCALLBACK(int) rtVfsStdFile_SetOwner(void *pvThis, RTUID uid, RTGID gid) 346 344 { 347 PRTVFSSTDFILE pThis = (PRTVFSSTDFILE)pvThis;348 345 #if 0 346 PRTVFSSTDFILE pThis = (PRTVFSSTDFILE)pvThis; 349 347 return RTFileSetOwner(pThis->hFile, uid, gid); 350 348 #else
Note:
See TracChangeset
for help on using the changeset viewer.