diff options
author | Juan Quintela | 2022-09-02 18:51:24 +0200 |
---|---|---|
committer | Thomas Huth | 2022-09-20 11:23:02 +0200 |
commit | a65c9527fd78dbea7f6f24f8c581a91281f355d9 (patch) | |
tree | 327d8c50ae813cdab458eaf53d1c660668601695 /tests/qtest/es1370-test.c | |
parent | qtest/fuzz-lsi53c895a-test: set guest RAM to 2G (diff) | |
download | qemu-a65c9527fd78dbea7f6f24f8c581a91281f355d9.tar.gz qemu-a65c9527fd78dbea7f6f24f8c581a91281f355d9.tar.xz qemu-a65c9527fd78dbea7f6f24f8c581a91281f355d9.zip |
tests: Fix error strings
They were copy-pasted from e1000e and never changed.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20220902165126.1482-7-quintela@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/es1370-test.c')
-rw-r--r-- | tests/qtest/es1370-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/es1370-test.c b/tests/qtest/es1370-test.c index adccdac1be..97ab65c435 100644 --- a/tests/qtest/es1370-test.c +++ b/tests/qtest/es1370-test.c @@ -28,7 +28,7 @@ static void *es1370_get_driver(void *obj, const char *interface) return &es1370->dev; } - fprintf(stderr, "%s not present in e1000e\n", interface); + fprintf(stderr, "%s not present in es1370\n", interface); g_assert_not_reached(); } |