diff options
author | 2023-10-25 11:11:14 +0200 | |
---|---|---|
committer | 2023-10-31 08:44:33 +0100 | |
commit | fc55cf318a19c385c25843865788ffdd05cde607 (patch) | |
tree | f3b6f2ff09243b7bcd770c5d6dead91cfc3df548 /migration/qemu-file.c | |
parent | migration: migration_rate_limit_reset() don't need the QEMUFile (diff) | |
download | qemu-fc55cf318a19c385c25843865788ffdd05cde607.tar.xz qemu-fc55cf318a19c385c25843865788ffdd05cde607.zip |
qemu-file: Simplify qemu_file_get_error()
If we pass a NULL error is the same that returning directly the value.
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-ID: <20231025091117.6342-10-quintela@redhat.com>
Diffstat (limited to 'migration/qemu-file.c')
-rw-r--r-- | migration/qemu-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/qemu-file.c b/migration/qemu-file.c index 0158db2a54..7e738743ce 100644 --- a/migration/qemu-file.c +++ b/migration/qemu-file.c @@ -204,7 +204,7 @@ void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err) */ int qemu_file_get_error(QEMUFile *f) { - return qemu_file_get_error_obj(f, NULL); + return f->last_error; } /* |