Commit 07435f7462e789a8df4718c9b2fc849b54446319

Authored by pbrook
1 parent e3f4e2a4

Fix incorrect return type.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1802 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
hw/lance.c
@@ -283,7 +283,7 @@ static CPUWriteMemoryFunc *lance_mem_write[3] = { @@ -283,7 +283,7 @@ static CPUWriteMemoryFunc *lance_mem_write[3] = {
283 283
284 #define MIN_BUF_SIZE 60 284 #define MIN_BUF_SIZE 60
285 285
286 -static void lance_can_receive(void *opaque) 286 +static int lance_can_receive(void *opaque)
287 { 287 {
288 return 1; 288 return 1;
289 } 289 }