Changeset 4232 in vbox for trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp
- Timestamp:
- Aug 19, 2007 8:19:21 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23728
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp
-
Property svn:eol-style
set to
native
r4071 r4232 48 48 static int iDirFile = 0; 49 49 50 static c har *pszDirList[] =50 static const char *pszDirList[] = 51 51 { 52 52 "c:", … … 55 55 }; 56 56 57 static c har *pszDirListC[] =57 static const char *pszDirListC[] = 58 58 { 59 59 ".", … … 62 62 }; 63 63 64 static c har *pszDirListTestdir[] =64 static const char *pszDirListTestdir[] = 65 65 { 66 66 ".", … … 81 81 }; 82 82 83 static c har *pszDirListSUBDIR[] =83 static const char *pszDirListSUBDIR[] = 84 84 { 85 85 ".", … … 151 151 { 152 152 int cMax; 153 c har **ppszDirList;153 const char **ppszDirList; 154 154 155 155 /* first try pszDirList */ 156 for ( int i=0;i<RT_ELEMENTS(pszDirList);i++)156 for (unsigned int i=0;i<RT_ELEMENTS(pszDirList);i++) 157 157 { 158 158 if(!strcmp(pszPath, pszDirList[i])) -
Property svn:eol-style
set to
Note:
See TracChangeset
for help on using the changeset viewer.