mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-29 11:06:18 +00:00
drivers: can not -> cannot
This commit is contained in:
parent
73f48d12ec
commit
11bdba7e64
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue