Changeset 50773 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
- Timestamp:
- Mar 13, 2014 3:45:46 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_main.c
r50754 r50773 3238 3238 { 3239 3239 /* success */ 3240 pCmd-> i8Result = 0;3240 pCmd->u.i8Result = 0; 3241 3241 } 3242 3242 else 3243 3243 { 3244 3244 crWarning("crVBoxServerCmdVbvaCrCmdProcess failed, rc %d", rc); 3245 pCmd-> i8Result = -1;3245 pCmd->u.i8Result = -1; 3246 3246 } 3247 3247 break; … … 3254 3254 default: 3255 3255 WARN(("unsupported command")); 3256 pCmd-> i8Result = -1;3256 pCmd->u.i8Result = -1; 3257 3257 } 3258 3258 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.