Fix build.

This commit is contained in:
Victor Zverovich 2014-08-28 14:51:01 -07:00
parent eab0b577f8
commit e62354a190

View File

@ -73,7 +73,7 @@ fmt::BufferedFile::~BufferedFile() FMT_NOEXCEPT(true) {
fmt::BufferedFile::BufferedFile(fmt::StringRef filename, fmt::StringRef mode) { fmt::BufferedFile::BufferedFile(fmt::StringRef filename, fmt::StringRef mode) {
FMT_RETRY_VAL(file_, FMT_SYSTEM(fopen(filename.c_str(), mode.c_str())), 0); FMT_RETRY_VAL(file_, FMT_SYSTEM(fopen(filename.c_str(), mode.c_str())), 0);
if (!file_) if (!file_)
throw SystemError(errno, "cannot open file {}", path); throw SystemError(errno, "cannot open file {}", filename);
} }
void fmt::BufferedFile::close() { void fmt::BufferedFile::close() {