summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Buffer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Buffer.cc b/lib/Buffer.cc
index 473da62..447f883 100644
--- a/lib/Buffer.cc
+++ b/lib/Buffer.cc
@@ -199,7 +199,7 @@ off_t Buffer::seek(off_t off, int wheel) throw (GeneralException) {
}
if (ptr < 0) {
ptr = old_ptr;
- throw GeneralException("Can't seek a Buffer before its start.")
+ throw GeneralException("Can't seek a Buffer before its start.");
}
operator[](ptr);
return ptr;