diff options
author | Stefan Hajnoczi | 2021-04-12 16:34:36 +0200 |
---|---|---|
committer | Thomas Huth | 2021-05-14 12:28:01 +0200 |
commit | f62215298a3c38b3b64271f9c6a93ca2f28115a3 (patch) | |
tree | 567c58e29527b198d2aa63b8fb7f94b56450e3da /tests/qtest/libqos/qgraph.c | |
parent | gitlab-ci: Replace YAML anchors by extends (native_test_job) (diff) | |
download | qemu-f62215298a3c38b3b64271f9c6a93ca2f28115a3.tar.gz qemu-f62215298a3c38b3b64271f9c6a93ca2f28115a3.tar.xz qemu-f62215298a3c38b3b64271f9c6a93ca2f28115a3.zip |
libqos/qgraph: fix "UNAVAILBLE" typo
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20210412143437.727560-2-stefanha@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/libqos/qgraph.c')
-rw-r--r-- | tests/qtest/libqos/qgraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/libqos/qgraph.c b/tests/qtest/libqos/qgraph.c index b3b1a31f81..d1dc491930 100644 --- a/tests/qtest/libqos/qgraph.c +++ b/tests/qtest/libqos/qgraph.c @@ -844,7 +844,7 @@ void qos_dump_graph(void) } qos_printf_literal("type=%d cmd_line='%s' [%s]\n", node->type, node->command_line, - node->available ? "available" : "UNAVAILBLE" + node->available ? "available" : "UNAVAILABLE" ); } g_list_free(keys); |