Changeset 69679 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Nov 13, 2017 3:53:01 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsstddir.cpp
r69674 r69679 569 569 570 570 571 RTDECL(int) RTVfsDirOpenNormal(const char *psz Filename, uint32_t fFlags, PRTVFSDIR phVfsDir)571 RTDECL(int) RTVfsDirOpenNormal(const char *pszPath, uint32_t fFlags, PRTVFSDIR phVfsDir) 572 572 { 573 573 /* … … 575 575 */ 576 576 PRTDIR hDir; 577 int rc = RTDirOpenFiltered(&hDir, psz Filename, RTDIRFILTER_NONE, fFlags);577 int rc = RTDirOpenFiltered(&hDir, pszPath, RTDIRFILTER_NONE, fFlags); 578 578 if (RT_SUCCESS(rc)) 579 579 {
Note:
See TracChangeset
for help on using the changeset viewer.