Changeset 56995 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Jul 18, 2015 11:16:49 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r56211 r56995 192 192 rc = (*g_pService)->resume(g_pService); 193 193 if (RT_FAILURE(rc)) 194 VBClFatalError(("Error resuming the service: %Rrc\n" ));194 VBClFatalError(("Error resuming the service: %Rrc\n", rc)); 195 195 } 196 196 if (!fHasVT) … … 198 198 rc = (*g_pService)->pause(g_pService); 199 199 if (RT_FAILURE(rc)) 200 VBClFatalError(("Error pausing the service: %Rrc\n" ));200 VBClFatalError(("Error pausing the service: %Rrc\n", rc)); 201 201 } 202 202 }
Note:
See TracChangeset
for help on using the changeset viewer.