Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkae committed Oct 18, 2023
1 parent 5609ac6 commit 0aeb244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platforms/eglstream-kms/server/egl_output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,13 @@ void mgek::EGLOutput::configure(size_t kms_mode_index)
BOOST_THROW_EXCEPTION((
mg::egl_error(
std::string{"Failed to find EGLOutputEXT corresponding to DRM CRTC "} +
std::to_string(crtc_id))));
std::to_string(_crtc_id))));
}
if (found_layers != 1)
{
BOOST_THROW_EXCEPTION(std::runtime_error{
std::string{"Failed to find EGLOutputEXT corresponding to DRM CRTC "} +
std::to_string(crtc_id)});
std::to_string(_crtc_id)});
}
}

Expand Down

0 comments on commit 0aeb244

Please sign in to comment.