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

old-commit-hash: 9b28897f09112ec1dc28d7196964588989029940
This commit is contained in:
Dean Lee
2023-03-10 05:13:29 +08:00
committed by GitHub
parent 6d6137ef5a
commit 0fcc3b4da7
+1 -1
View File
@@ -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;
});