From: Pavel Dovgalyuk Date: Thu, 25 Jul 2019 08:44:15 +0000 (+0300) Subject: replay: add missing fix for internal function X-Git-Tag: v4.2.0-rc0~224^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=245429e4a0e036471ba46e2393b6f33b78b9615e;p=thirdparty%2Fqemu.git replay: add missing fix for internal function This is a fix which was missed by patch 74c0b816adfc6aa1b01b4426fdf385e32e35cbac, which added current_step parameter to the replay_advance_current_step function. Signed-off-by: Pavel Dovgalyuk Message-Id: <156404425561.18669.13015037579222450241.stgit@pasha-Precision-3630-Tower> Signed-off-by: Paolo Bonzini --- diff --git a/replay/replay-internal.c b/replay/replay-internal.c index c013b238205..7b427670594 100644 --- a/replay/replay-internal.c +++ b/replay/replay-internal.c @@ -229,7 +229,7 @@ void replay_mutex_unlock(void) void replay_advance_current_step(uint64_t current_step) { - int diff = (int)(replay_get_current_step() - replay_state.current_step); + int diff = (int)(current_step - replay_state.current_step); /* Time can only go forward */ assert(diff >= 0);