diff options
author | pbrook | 2006-04-09 01:32:52 +0200 |
---|---|---|
committer | pbrook | 2006-04-09 01:32:52 +0200 |
commit | 07435f7462e789a8df4718c9b2fc849b54446319 (patch) | |
tree | 2eed9a14c5a9318ee96cafcd3083233f9a9f7b0f /hw/lance.c | |
parent | Initialize physical memory space to IO_MEM_UNASSIGNED. (diff) | |
download | qemu-07435f7462e789a8df4718c9b2fc849b54446319.tar.gz qemu-07435f7462e789a8df4718c9b2fc849b54446319.tar.xz qemu-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/lance.c b/hw/lance.c index c0cb0f98d6..d1679375d0 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; } |