diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-10-01 17:34:34 -0300 |
---|---|---|
committer | Juan Quintela <quintela@trasno.org> | 2014-10-14 10:28:12 +0200 |
commit | e68dd3659628c41447f46da6657d68da83c3cf88 (patch) | |
tree | 38f6e9f94bd44886e147d9e16b7ff6c53fe6f849 /qemu-file.c | |
parent | 9a4ac51f7222011ea2d44a6bc3ef01e9107b0af4 (diff) |
qemu-file: Make qemu_file_is_writable() non-static
The QEMUFileStdio code will use qemu_file_is_writable() and will be
moved to a separate file.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'qemu-file.c')
-rw-r--r-- | qemu-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-file.c b/qemu-file.c index a5bbe7ebb0..c303b61373 100644 --- a/qemu-file.c +++ b/qemu-file.c @@ -456,7 +456,7 @@ void qemu_file_set_error(QEMUFile *f, int ret) } } -static inline bool qemu_file_is_writable(QEMUFile *f) +bool qemu_file_is_writable(QEMUFile *f) { return f->ops->writev_buffer || f->ops->put_buffer; } |