Commit ae48a108 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Merge pull request #204 from jvkersch/fix-failing-file-test

Fix typo in IOError format string
parents 89d0615c 6ff77a6a
......@@ -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