Skip to content

Commit

Permalink
PR #13614 from j-mattsson: backend-v4l2.cpp: Add missing throw keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
Nir-Az authored Dec 18, 2024
2 parents 37028f7 + 84061b9 commit 9f6f008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linux/backend-v4l2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ namespace librealsense
if (_use_memory_map)
{
if(munmap(_start, _original_length) < 0)
linux_backend_exception("munmap");
throw linux_backend_exception("munmap");
}
else
{
Expand Down

0 comments on commit 9f6f008

Please sign in to comment.