We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cvd display
1 parent c96a986 commit 78cc4acCopy full SHA for 78cc4ac
base/cvd/cuttlefish/host/libs/vm_manager/crosvm_display_controller.cpp
@@ -107,11 +107,11 @@ Result<int> CrosvmDisplayController::RunCrosvmDisplayCommand(
107
108
Result<std::string> res = RunAndCaptureStdout(std::move(command));
109
if (res.ok()) {
110
+ *stdout_str = CF_EXPECT(std::move(res));
111
return 0;
112
} else {
113
LOG(ERROR) << "Failed to run crosvm display command:\n"
114
<< res.error().FormatForEnv();
- CF_EXPECT(std::move(res));
115
116
}
117
0 commit comments