diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-08 23:32:52 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-08 23:32:52 +0000 |
commit | 07435f7462e789a8df4718c9b2fc849b54446319 (patch) | |
tree | 2eed9a14c5a9318ee96cafcd3083233f9a9f7b0f /hw/lance.c | |
parent | e3f4e2a4b0df510e441badb85c9398516c27bd66 (diff) | |
download | qemu-07435f7462e789a8df4718c9b2fc849b54446319.tar.gz qemu-07435f7462e789a8df4718c9b2fc849b54446319.tar.bz2 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; } |