Changeset 26694 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Feb 23, 2010 9:15:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r26485 r26694 750 750 751 751 752 RTDECL( int) RTGetOptPrintError(int ch, PCRTGETOPTUNION pValueUnion)752 RTDECL(RTEXITCODE) RTGetOptPrintError(int ch, PCRTGETOPTUNION pValueUnion) 753 753 { 754 754 if (ch == VINF_GETOPT_NOT_OPTION) … … 768 768 RTMsgError("%Rrs\n", ch); 769 769 770 return 2; /** @todo add defines for EXIT_SUCCESS, EXIT_FAILURE, EXIT_INVAL, etc... */770 return RTEXITCODE_SYNTAX; 771 771 } 772 772 RT_EXPORT_SYMBOL(RTGetOptPrintError);
Note:
See TracChangeset
for help on using the changeset viewer.