diff options
author | Juan Quintela <quintela@redhat.com> | 2012-09-04 12:45:42 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2012-10-17 18:35:00 +0200 |
commit | a2b413512443e67cd58285b8d98b84792a66c710 (patch) | |
tree | 1e15091a6d7056d4f4d6db3db195b19576e72ef1 /qemu-file.h | |
parent | 6f121ff575e1601d652f3eecf4f9ab1205c12df1 (diff) |
savevm: make qemu_file_put_notify() return errors
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qemu-file.h')
-rw-r--r-- | qemu-file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-file.h b/qemu-file.h index 8dd920790c..9c8985b610 100644 --- a/qemu-file.h +++ b/qemu-file.h @@ -107,7 +107,7 @@ int qemu_file_get_error(QEMUFile *f); /* Try to send any outstanding data. This function is useful when output is * halted due to rate limiting or EAGAIN errors occur as it can be used to * resume output. */ -void qemu_file_put_notify(QEMUFile *f); +int qemu_file_put_notify(QEMUFile *f); static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv) { |