diff options
author | Akihiko Odaki <akihiko.odaki@gmail.com> | 2022-08-29 17:33:01 +0900 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-08-29 15:29:13 +0200 |
commit | 146f39d7f3b08caa3a2a0645474465437cf085b8 (patch) | |
tree | 74a777bc7bd250dd3621c500a4086944136229ff | |
parent | 5f2992fe1ec5594e5cf5b17d1a9979f46054a7cc (diff) |
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(); } |