Skip to content

Commit 9f6f008

Browse files
authored
PR #13614 from j-mattsson: backend-v4l2.cpp: Add missing throw keyword
2 parents 37028f7 + 84061b9 commit 9f6f008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linux/backend-v4l2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ namespace librealsense
360360
if (_use_memory_map)
361361
{
362362
if(munmap(_start, _original_length) < 0)
363-
linux_backend_exception("munmap");
363+
throw linux_backend_exception("munmap");
364364
}
365365
else
366366
{

0 commit comments

Comments
 (0)