Skip to content

Commit

Permalink
Fix issue in vpXmlParserCamera::count() where args order was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Jan 4, 2024
1 parent 9633b63 commit c4e218e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/src/camera/vpXmlParserCamera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ class vpXmlParserCamera::Impl

camera = cam;

int nbCamera = count(node, cam_name, cam.get_projModel(), verbose, im_width, im_height);
int nbCamera = count(node, cam_name, cam.get_projModel(), im_width, im_height, verbose);
if (nbCamera) {
return SEQUENCE_ERROR;
}
Expand Down

0 comments on commit c4e218e

Please sign in to comment.