summaryrefslogtreecommitdiff
path: root/lib/Output.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-12-02 18:55:35 +0000
committerPixel <Pixel>2001-12-02 18:55:35 +0000
commite4075153def021c3405accb19ffcdc3247d98807 (patch)
treedc7085d969af2dd121f22619d6c453c4bd7a41a9 /lib/Output.cc
parent37989e882eaa805662dd0e260eb293c939e082b7 (diff)
Comments and so...
Diffstat (limited to 'lib/Output.cc')
-rw-r--r--lib/Output.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Output.cc b/lib/Output.cc
index 9e7437f..3f755ef 100644
--- a/lib/Output.cc
+++ b/lib/Output.cc
@@ -14,7 +14,7 @@ Output::Output(String no, int trunc = 1) throw (GeneralException) :
Handle(no.strlen() ? open(no.to_charp(), O_WRONLY | O_CREAT | (trunc ? O_TRUNC : O_APPEND)) : 1),
n(no) {
if (GetHandle() < 0) {
- throw IOGeneral(String("Error opening file") + no + " for writing: " + strerror(errno));
+ throw IOGeneral(String(_("Error opening file")) + no + _(" for writing: ") + strerror(errno));
}
}