fixed unused var warning

This commit is contained in:
Stanislav Shwartsman 2012-09-20 21:14:13 +00:00
parent bcd0a58537
commit cc5f8d12d1

View File

@ -1608,7 +1608,7 @@ void bx_ne2k_c::rx_frame(const void *buf, unsigned io_len)
int pages; int pages;
int avail; int avail;
unsigned idx; unsigned idx;
int wrapped; //int wrapped;
int nextpage; int nextpage;
unsigned char pkthdr[4]; unsigned char pkthdr[4];
unsigned char *pktbuf = (unsigned char *) buf; unsigned char *pktbuf = (unsigned char *) buf;
@ -1634,7 +1634,7 @@ void bx_ne2k_c::rx_frame(const void *buf, unsigned io_len)
} else { } else {
avail = (BX_NE2K_THIS s.page_stop - BX_NE2K_THIS s.page_start) - avail = (BX_NE2K_THIS s.page_stop - BX_NE2K_THIS s.page_start) -
(BX_NE2K_THIS s.curr_page - BX_NE2K_THIS s.bound_ptr); (BX_NE2K_THIS s.curr_page - BX_NE2K_THIS s.bound_ptr);
wrapped = 1; // wrapped = 1;
} }
// Avoid getting into a buffer overflow condition by not attempting // Avoid getting into a buffer overflow condition by not attempting