drivers: can not -> cannot

This commit is contained in:
Ryan Pavlik 2022-11-09 14:49:18 -06:00
parent 73f48d12ec
commit 11bdba7e64
2 changed files with 3 additions and 3 deletions

View file

@ -245,7 +245,7 @@ multi_create_tracking_override(enum xrt_tracking_override_type override_type,
// The offset describes the physical pose of the tracker in the space of the thing we want to track.
// For a tracker that is physically attached at y=.1m to the tracked thing, when querying the pose for the
// tracked thing, we want to transform its pose by y-=.1m relative to the tracker. Multiple target devices may
// share a single tracker, therefore we can not simply adjust the tracker's tracking origin.
// share a single tracker, therefore we cannot simply adjust the tracker's tracking origin.
math_pose_invert(offset, &d->tracking_override.offset_inv);
d->tracking_override.target = tracking_override_target;

View file

@ -177,7 +177,7 @@ v4l2_query_cap_and_validate(struct v4l2_fs *vid)
}
if (!(cap.capabilities & V4L2_CAP_STREAMING)) {
// cannot stream
V4L2_ERROR(vid, "error: Can not stream!");
V4L2_ERROR(vid, "error: Cannot stream!");
return -1;
}
if (cap.capabilities & V4L2_CAP_EXT_PIX_FORMAT) {
@ -689,7 +689,7 @@ v4l2_fs_create(struct xrt_frame_context *xfctx,
int fd = open(path, O_RDWR, 0);
if (fd < 0) {
V4L2_ERROR(vid, "Can not open '%s'", path);
V4L2_ERROR(vid, "Cannot open '%s'", path);
free(vid);
return NULL;
}