summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-04-08 23:32:52 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2006-04-08 23:32:52 +0000
commit07435f7462e789a8df4718c9b2fc849b54446319 (patch)
tree2eed9a14c5a9318ee96cafcd3083233f9a9f7b0f /hw/lance.c
parentInitialize physical memory space to IO_MEM_UNASSIGNED. (diff)
downloadqemu-kvm-07435f7462e789a8df4718c9b2fc849b54446319.tar.gz
qemu-kvm-07435f7462e789a8df4718c9b2fc849b54446319.tar.bz2
qemu-kvm-07435f7462e789a8df4718c9b2fc849b54446319.zip
Fix incorrect return type.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1802 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/lance.c')
-rw-r--r--hw/lance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/lance.c b/hw/lance.c
index c0cb0f98d..d1679375d 100644
--- a/hw/lance.c
+++ b/hw/lance.c
@@ -283,7 +283,7 @@ static CPUWriteMemoryFunc *lance_mem_write[3] = {
#define MIN_BUF_SIZE 60
-static void lance_can_receive(void *opaque)
+static int lance_can_receive(void *opaque)
{
return 1;
}