Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dynamic_vino_lib/src/inputs/standard_camera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ int Input::StandardCamera::getCameraId()
static int STANDARD_CAMERA_COUNT = -1;
int fd; // A file descriptor to the video device
struct v4l2_capability cap;
char file[20];
char file[32];
//if it is a realsense camera then skip it until we meet a standard camera
do
{
Expand Down
2 changes: 1 addition & 1 deletion vino_param_lib/src/param_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void operator>>(const YAML::Node & node, ParamManager::CommonRawData & common);
{ \
node[key] >> val; \
} \
catch (YAML::Exception e) \
catch (const YAML::Exception & e) \
{ \
slog::warn << e.msg << slog::endl; \
} \
Expand Down