mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
trace: fix runstate tracing
Signed-off-by: Yury Kotov <yury-kotov@yandex-team.ru> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-id: 20190426102115.30002-1-yury-kotov@yandex-team.ru Message-Id: <20190426102115.30002-1-yury-kotov@yandex-team.ru> Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
This commit is contained in:
parent
e0fb2c3d89
commit
b1939fcd43
1 changed files with 1 additions and 1 deletions
2
vl.c
2
vl.c
|
@ -725,7 +725,7 @@ void runstate_set(RunState new_state)
|
|||
assert(new_state < RUN_STATE__MAX);
|
||||
|
||||
trace_runstate_set(current_run_state, RunState_str(current_run_state),
|
||||
new_state, RunState_str(current_run_state));
|
||||
new_state, RunState_str(new_state));
|
||||
|
||||
if (current_run_state == new_state) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue