Commit 6ff77a6a authored by Joris Vankerschaver's avatar Joris Vankerschaver

Fix typo in IOError format string

This fixes an annoying typo introduced in cfe83db0.
parent 89d0615c
......@@ -211,7 +211,7 @@ Box* open(Box* arg1, Box* arg2) {
FILE* f = fopen(fn.c_str(), mode.c_str());
if (!f)
raiseExcHelper(IOError, "[Error %d] %s: '%s'", errno, strerror(errno), fn.c_str());
raiseExcHelper(IOError, "[Errno %d] %s: '%s'", errno, strerror(errno), fn.c_str());
return new BoxedFile(f, fn, mode);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment