diff options
author | Claudio Fontana | 2022-09-29 11:30:32 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-11-06 09:48:50 +0100 |
commit | dbc0e80553c067f56cb236d9de2cd0d50f3c6131 (patch) | |
tree | 623881e9b55c5d6de34f5b9f497e6e964086a465 /softmmu | |
parent | module: removed unused function argument "mayfail" (diff) | |
download | qemu-dbc0e80553c067f56cb236d9de2cd0d50f3c6131.tar.gz qemu-dbc0e80553c067f56cb236d9de2cd0d50f3c6131.tar.xz qemu-dbc0e80553c067f56cb236d9de2cd0d50f3c6131.zip |
module: rename module_load_one to module_load
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220929093035.4231-3-cfontana@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'softmmu')
-rw-r--r-- | softmmu/qtest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/qtest.c b/softmmu/qtest.c index ff74c5d709..7743545651 100644 --- a/softmmu/qtest.c +++ b/softmmu/qtest.c @@ -756,7 +756,7 @@ static void qtest_process_command(CharBackend *chr, gchar **words) g_assert(words[1] && words[2]); qtest_send_prefix(chr); - if (module_load_one(words[1], words[2])) { + if (module_load(words[1], words[2])) { qtest_sendf(chr, "OK\n"); } else { qtest_sendf(chr, "FAIL\n"); |