diff options
author | Juergen Lock <nox@jelal.kn-bremen.de> | 2010-03-25 22:34:00 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-03-30 17:44:44 +0000 |
commit | d1839d7367303e38e603bc0371d65648b4480078 (patch) | |
tree | 53d83c8acec870d6255389d69097d53547b304a9 | |
parent | 92c0e6579c045916ec592ceef7caf868ff310cfa (diff) | |
download | hqemu-d1839d7367303e38e603bc0371d65648b4480078.zip hqemu-d1839d7367303e38e603bc0371d65648b4480078.tar.gz |
Fix some compilation warnings on FreeBSD hosts
Signed-off-by: Juergen Lock <nox@jelal.kn-bremen.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | qemu-char.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-char.c b/qemu-char.c index a3d6e64..3e4df8d 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -1369,7 +1369,7 @@ static CharDriverState *qemu_chr_open_pp(QemuOpts *opts) #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) static int pp_ioctl(CharDriverState *chr, int cmd, void *arg) { - int fd = (int)chr->opaque; + int fd = (int)(long)chr->opaque; uint8_t b; switch(cmd) { @@ -1415,7 +1415,7 @@ static CharDriverState *qemu_chr_open_pp(QemuOpts *opts) return NULL; chr = qemu_mallocz(sizeof(CharDriverState)); - chr->opaque = (void *)fd; + chr->opaque = (void *)(long)fd; chr->chr_write = null_chr_write; chr->chr_ioctl = pp_ioctl; return chr; |