mirror of https://github.com/xemu-project/xemu.git
Fix warning about incompatible types
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5373 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
b61680ce3d
commit
342b51d74f
6
vl.c
6
vl.c
|
@ -6226,8 +6226,8 @@ static void fd_put_notify(void *opaque)
|
||||||
qemu_file_put_notify(s->file);
|
qemu_file_put_notify(s->file);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fd_put_buffer(void *opaque, const uint8_t *buf,
|
static void fd_put_buffer(void *opaque, const uint8_t *buf,
|
||||||
int64_t pos, int size)
|
int64_t pos, int size)
|
||||||
{
|
{
|
||||||
QEMUFileFD *s = opaque;
|
QEMUFileFD *s = opaque;
|
||||||
ssize_t len;
|
ssize_t len;
|
||||||
|
@ -6243,8 +6243,6 @@ static int fd_put_buffer(void *opaque, const uint8_t *buf,
|
||||||
* a put notify */
|
* a put notify */
|
||||||
if (len == -EAGAIN)
|
if (len == -EAGAIN)
|
||||||
qemu_set_fd_handler2(s->fd, NULL, NULL, fd_put_notify, s);
|
qemu_set_fd_handler2(s->fd, NULL, NULL, fd_put_notify, s);
|
||||||
|
|
||||||
return len;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fd_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
|
static int fd_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
|
||||||
|
|
Loading…
Reference in New Issue