diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/main-loop.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/qemu/main-loop.h b/include/qemu/main-loop.h index 7da1d63fb0..0f4a0fd4b2 100644 --- a/include/qemu/main-loop.h +++ b/include/qemu/main-loop.h @@ -198,10 +198,10 @@ typedef int IOCanReadHandler(void *opaque); * * @opaque: A pointer-sized value that is passed to @fd_read and @fd_write. */ -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); #ifdef CONFIG_POSIX /** |