Changeset 8926 in vbox
- Timestamp:
- May 19, 2008 5:41:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r8245 r8926 55 55 if (*pszArgThis == '-') 56 56 { 57 /** @todo implement '--'. */ 57 58 for (size_t i = 0; i < cOptions; i++) 58 59 { … … 191 192 } 192 193 } 194 195 196 return VERR_GETOPT_UNKNOWN_OPTION; 193 197 } 194 198 199 /* 200 * Not an option. 201 */ 195 202 /** @todo Sort options and arguments (i.e. stuff that doesn't start with '-'), stop when 196 203 * encountering the first argument. */ 197 204 198 return VERR_GETOPT_UNKNOWN_OPTION;205 return 0; 199 206 } 200 207
Note:
See TracChangeset
for help on using the changeset viewer.