Changeset 38636 in vbox for trunk/src/VBox/Main/src-server/xpcom
- Timestamp:
- Sep 5, 2011 1:49:45 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73843
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/xpcom/server.cpp
r37666 r38636 789 789 * the support driver 790 790 */ 791 RTR3Init(); 791 int vrc = RTR3InitExe(argc, &argv, 0); 792 if (RT_FAILURE(vrc)) 793 return RTMsgInitFailure(vrc); 792 794 793 795 static const RTGETOPTDEF s_aOptions[] = … … 811 813 812 814 RTGETOPTSTATE GetOptState; 813 intvrc = RTGetOptInit(&GetOptState, argc, argv, &s_aOptions[0], RT_ELEMENTS(s_aOptions), 1, 0 /*fFlags*/);815 vrc = RTGetOptInit(&GetOptState, argc, argv, &s_aOptions[0], RT_ELEMENTS(s_aOptions), 1, 0 /*fFlags*/); 814 816 AssertRC(vrc); 815 817
Note:
See TracChangeset
for help on using the changeset viewer.