summaryrefslogtreecommitdiff
path: root/lib/Exceptions.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-28 22:03:53 +0000
committerPixel <Pixel>2001-11-28 22:03:53 +0000
commit0a7f6d0b5935f9794dda8935d37d4238bed3d611 (patch)
tree8c45e37dd1e95df0efa3414d33ca2e7f597872e2 /lib/Exceptions.cc
parent9f2ad93e4dd13446a9df2304f1f74c4272739bea (diff)
Some changes...
Diffstat (limited to 'lib/Exceptions.cc')
-rw-r--r--lib/Exceptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Exceptions.cc b/lib/Exceptions.cc
index 6e4ddbe..10b82a5 100644
--- a/lib/Exceptions.cc
+++ b/lib/Exceptions.cc
@@ -40,7 +40,7 @@ MemoryException::MemoryException(ssize_t s) {
}
IOException::IOException(String fn, op_t op, ssize_t s) {
- sprintf(t, _("An error has occured while %s %ld bytes from %s: %s"), op == IO_WRITE ? _("writing") : _("reading"),
+ sprintf(t, _("An error has occured while %s %ld bytes on %s: %s"), op == IO_WRITE ? _("writing") : _("reading"),
s, fn.to_charp(), strerror(errno));
msg = strdup(t);
}