diff options
author | Akihiko Odaki | 2022-08-29 10:33:01 +0200 |
---|---|---|
committer | Thomas Huth | 2022-08-29 15:29:13 +0200 |
commit | 146f39d7f3b08caa3a2a0645474465437cf085b8 (patch) | |
tree | 74a777bc7bd250dd3621c500a4086944136229ff | |
parent | gitlab-ci: Only use one process in Windows jobs for compilation (diff) | |
download | qemu-146f39d7f3b08caa3a2a0645474465437cf085b8.tar.gz qemu-146f39d7f3b08caa3a2a0645474465437cf085b8.tar.xz qemu-146f39d7f3b08caa3a2a0645474465437cf085b8.zip |
tests/qtest/ac97-test: Correct reference to driver
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20220829083301.143527-1-akihiko.odaki@daynix.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/qtest/ac97-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/ac97-test.c b/tests/qtest/ac97-test.c index b084e31bff..74103efdfa 100644 --- a/tests/qtest/ac97-test.c +++ b/tests/qtest/ac97-test.c @@ -28,7 +28,7 @@ static void *ac97_get_driver(void *obj, const char *interface) return &ac97->dev; } - fprintf(stderr, "%s not present in e1000e\n", interface); + fprintf(stderr, "%s not present in ac97\n", interface); g_assert_not_reached(); } |