replay: fix incorrect format string in seekTo (#27547)

old-commit-hash: 9b28897f09
beeps
Dean Lee 2 years ago committed by GitHub
parent 6d6137ef5a
commit 0fcc3b4da7
  1. 2
      tools/replay/replay.cc

@ -193,7 +193,7 @@ std::optional<uint64_t> Replay::find(FindFlag flag) {
void Replay::pause(bool pause) {
updateEvents([=]() {
rWarning("%s at %d s", pause ? "paused..." : "resuming", currentSeconds());
rWarning("%s at %.2f s", pause ? "paused..." : "resuming", currentSeconds());
paused_ = pause;
return true;
});

Loading…
Cancel
Save