diff options
author | Yury Kotov <yury-kotov@yandex-team.ru> | 2019-04-26 13:21:15 +0300 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@gmail.com> | 2019-04-29 11:57:19 -0400 |
commit | b1939fcd438b7140cb8f2685dee026bb112819d7 (patch) | |
tree | 4e3e98714ab014d7fe1ec80178579506c42cccb9 /vl.c | |
parent | e0fb2c3d89aa77057ac4aa073e01f4ca484449b0 (diff) |
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>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |