summary refs log tree commit diff stats
path: root/iohandler.c
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2015-06-04 14:45:24 +0800
committerStefan Hajnoczi <stefanha@redhat.com>2015-06-12 13:26:21 +0100
commitf4d248bdc33167ab9e91b1470ef47a61dffd0b38 (patch)
tree31d91f0c383c0803d9b5b62bfbd2380998193597 /iohandler.c
parent1e354528bdaf9671ffc94e531e6967233abe7b8f (diff)
downloadfocaccia-qemu-f4d248bdc33167ab9e91b1470ef47a61dffd0b38.tar.gz
focaccia-qemu-f4d248bdc33167ab9e91b1470ef47a61dffd0b38.zip
iohandler: Change return type of qemu_set_fd_handler to "void"
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-id: 1433400324-7358-14-git-send-email-famz@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'iohandler.c')
-rw-r--r--iohandler.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/iohandler.c b/iohandler.c
index d361cf2c03..826f713e9f 100644
--- a/iohandler.c
+++ b/iohandler.c
@@ -45,10 +45,10 @@ typedef struct IOHandlerRecord {
 static QLIST_HEAD(, IOHandlerRecord) io_handlers =
     QLIST_HEAD_INITIALIZER(io_handlers);
 
-int qemu_set_fd_handler(int fd,
-                        IOHandler *fd_read,
-                        IOHandler *fd_write,
-                        void *opaque)
+void qemu_set_fd_handler(int fd,
+                         IOHandler *fd_read,
+                         IOHandler *fd_write,
+                         void *opaque)
 {
     IOHandlerRecord *ioh;
 
@@ -77,7 +77,6 @@ int qemu_set_fd_handler(int fd,
         ioh->deleted = 0;
         qemu_notify_event();
     }
-    return 0;
 }
 
 void qemu_iohandler_fill(GArray *pollfds)