Remove redundant debug statements from disk.c.
authorKevin O'Connor <kevin@koconnor.net>
Sun, 23 Mar 2008 03:57:21 +0000 (23:57 -0400)
committerKevin O'Connor <kevin@koconnor.net>
Sun, 23 Mar 2008 03:57:21 +0000 (23:57 -0400)
Calls to disk_ret with an error code already log - don't log twice.

src/disk.c

index bc20b1298cb3545d7effbddc77ea8a5bf2a11c66..880052b381f0b84b7cb34b92d992a5e9c3d3c72d 100644 (file)
@@ -537,7 +537,6 @@ disk_134e06(struct bregs *regs, u8 device)
 static void
 disk_134eXX(struct bregs *regs, u8 device)
 {
-    debug_stub(regs);
     disk_ret(regs, DISK_RET_EPARAM);
 }
 
@@ -557,7 +556,6 @@ disk_134e(struct bregs *regs, u8 device)
 void
 disk_13XX(struct bregs *regs, u8 device)
 {
-    debug_stub(regs);
     disk_ret(regs, DISK_RET_EPARAM);
 }