diff --git a/src/hid/hid-device.cpp b/src/hid/hid-device.cpp index 69f85111c7..71c2448ddc 100644 --- a/src/hid/hid-device.cpp +++ b/src/hid/hid-device.cpp @@ -168,7 +168,7 @@ namespace librealsense if( _realsense_hid_report_actual_size != sizeof( REALSENSE_HID_REPORT ) ) { //for FW version < 5.16 the actual struct is 32 bit, so we can not use memcpy for the whole struct - //for FW version < 5.16 x,y,x are all short with the x variable located at offset 10, y at offset 12, and z at offset 14 within the structure. + //x,y,x are all short with the x variable located at offset 10, y at offset 12, and z at offset 14 within the structure. memcpy( &report, r->get_buffer().data(), 10 ); const int16_t * x = reinterpret_cast< const int16_t * >( r->get_buffer().data() + 10 ); @@ -220,7 +220,7 @@ namespace librealsense if( _realsense_hid_report_actual_size != sizeof( REALSENSE_HID_REPORT ) ) { // for FW version<5.16 the actual struct is 32 bit, so we can not use memcpy for the whole struct - // for FW version<5.16 x,y,x are all short with the x variable located at offset 10, y at offset 12, and + // x,y,x are all short with the x variable located at offset 10, y at offset 12, and // z at offset 14 within the structure. memcpy( &report, tmp_buffer, 10 ); const int16_t * x = reinterpret_cast< const int16_t * >( tmp_buffer + 10 );