summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Input.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Input.cc b/src/Input.cc
index ae22109..b83a1be 100644
--- a/src/Input.cc
+++ b/src/Input.cc
@@ -258,7 +258,6 @@ ssize_t Balau::Input::read(void * buf, size_t count) throw (GeneralException) {
delete cbResults;
m_pendingOp = NULL;
return result;
- break;
default:
AAssert(false, "Don't switch operations while one is still not complete.");
}
@@ -274,6 +273,8 @@ ssize_t Balau::Input::read(void * buf, size_t count) throw (GeneralException) {
m_pendingOp = NULL;
throw;
}
+
+ IAssert(false, "Shouldn't end up there.");
}
bool Balau::Input::isClosed() {