a/track: Fix typo.

This commit is contained in:
Ryan Pavlik 2019-10-01 12:21:08 -05:00 committed by Jakob Bornecrantz
parent d8cd9ffcdd
commit 37d4eae37a

View file

@ -160,7 +160,7 @@ do_view(TrackerPSMV &t, View &view, cv::Mat &grey, cv::Mat &rgb)
} }
static void static void
procces(TrackerPSMV &t, struct xrt_frame *xf) process(TrackerPSMV &t, struct xrt_frame *xf)
{ {
// Only IMU data // Only IMU data
if (xf == NULL) { if (xf == NULL) {
@ -339,7 +339,7 @@ run(TrackerPSMV &t)
// Unlock the mutex when we do the work. // Unlock the mutex when we do the work.
os_thread_helper_unlock(&t.oth); os_thread_helper_unlock(&t.oth);
procces(t, frame); process(t, frame);
// Have to lock it again. // Have to lock it again.
os_thread_helper_lock(&t.oth); os_thread_helper_lock(&t.oth);