qemu-file: Make qemu_file_get_error_obj() static
It was not used outside of qemu_file.c anyways. Reviewed-by: Peter Xu <peterx@redhat.com> Message-ID: <20230530183941.7223-21-quintela@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
8c5ee0bfb8
commit
ac6f48e15d
@ -158,7 +158,7 @@ void qemu_file_set_hooks(QEMUFile *f, const QEMUFileHooks *hooks)
|
||||
* is not 0.
|
||||
*
|
||||
*/
|
||||
int qemu_file_get_error_obj(QEMUFile *f, Error **errp)
|
||||
static int qemu_file_get_error_obj(QEMUFile *f, Error **errp)
|
||||
{
|
||||
if (errp) {
|
||||
*errp = f->last_error_obj ? error_copy(f->last_error_obj) : NULL;
|
||||
|
@ -128,7 +128,6 @@ void qemu_file_skip(QEMUFile *f, int size);
|
||||
* accounting information tracks the total migration traffic.
|
||||
*/
|
||||
void qemu_file_credit_transfer(QEMUFile *f, size_t size);
|
||||
int qemu_file_get_error_obj(QEMUFile *f, Error **errp);
|
||||
int qemu_file_get_error_obj_any(QEMUFile *f1, QEMUFile *f2, Error **errp);
|
||||
void qemu_file_set_error_obj(QEMUFile *f, int ret, Error *err);
|
||||
void qemu_file_set_error(QEMUFile *f, int ret);
|
||||
|
Loading…
Reference in New Issue
Block a user