Skip to content

Commit

Permalink
backend-v4l2.cpp: Add missing throw keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mattsson authored Dec 17, 2024
1 parent 367937d commit 84061b9
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 84061b9

Please sign in to comment.