aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOleinik, Alexander <alxndr@bu.edu>2019-08-05 03:13:01 +0000
committerThomas Huth <thuth@redhat.com>2019-08-15 19:23:59 +0200
commit2b8985f1b82ea994dbe37986536c5c623c38ea86 (patch)
tree0b1011fb3c0a073e61a4f83f60695d7c2948bba8 /include
parent9e06029aea3b2eca1d5261352e695edc1e7d7b8b (diff)
downloadqemu-2b8985f1b82ea994dbe37986536c5c623c38ea86.zip
qemu-2b8985f1b82ea994dbe37986536c5c623c38ea86.tar.gz
qemu-2b8985f1b82ea994dbe37986536c5c623c38ea86.tar.bz2
qtest: Rename qtest.c:qtest_init()
Both the qtest client, libqtest.c, and server, qtest.c, used the same name for initialization functions which can cause confusion. Signed-off-by: Alexander Oleinik <alxndr@bu.edu> Message-Id: <20190805031240.6024-1-alxndr@bu.edu> Reviewed-by: John Snow <jsnow@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/sysemu/qtest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/qtest.h b/include/sysemu/qtest.h
index cd114b8..5ed09c8 100644
--- a/include/sysemu/qtest.h
+++ b/include/sysemu/qtest.h
@@ -24,6 +24,6 @@ static inline bool qtest_enabled(void)
bool qtest_driver(void);
-void qtest_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
+void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
#endif