Skip to content

Commit

Permalink
Fix time-syncing message (#1121)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde authored Jan 12, 2024
1 parent 30b471a commit dffc11d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,8 @@ bool CameraDisplay::updateCamera()
if (timeDifferenceInExactSyncMode(image, rviz_time)) {
setStatus(
StatusLevel::Warn, TIME_STATUS,
QString("Time-syncing active and no image at timestamp ") + rviz_time.nanoseconds() + ".");
QString("Time-syncing active and no image at timestamp ") +
QString::number(rviz_time.nanoseconds()) + ".");
return false;
}

Expand Down

0 comments on commit dffc11d

Please sign in to comment.