From d9d312351e75a515ed242beb885a233bb7590876 Mon Sep 17 00:00:00 2001 From: Bryce Denney Date: Thu, 24 May 2001 18:50:59 +0000 Subject: [PATCH] - forgot to add some returns last time --- bochs/iodev/ne2k.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/iodev/ne2k.cc b/bochs/iodev/ne2k.cc index e3346ed57..9824c9726 100644 --- a/bochs/iodev/ne2k.cc +++ b/bochs/iodev/ne2k.cc @@ -52,7 +52,7 @@ bx_ne2k_c::~bx_ne2k_c(void) void bx_ne2k_c::reset_device(void) { - BX_DEBUG (("reset_device")); + BX_DEBUG (("reset_device\n")); // Zero out registers and memory memset( & BX_NE2K_THIS s.CR, 0, sizeof(BX_NE2K_THIS s.CR) ); memset( & BX_NE2K_THIS s.ISR, 0, sizeof(BX_NE2K_THIS s.ISR)); @@ -872,7 +872,7 @@ bx_ne2k_c::tx_timer_handler(void *this_ptr) void bx_ne2k_c::tx_timer(void) { - BX_DEBUG(("tx_timer")); + BX_DEBUG(("tx_timer\n")); BX_NE2K_THIS s.TSR.tx_ok = 1; // Generate an interrupt if not masked and not one in progress if (BX_NE2K_THIS s.IMR.tx_inte && !BX_NE2K_THIS s.ISR.pkt_tx) {