From e62354a190db7e4ac02bcc90c6dfc0e8f962adab Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 28 Aug 2014 14:51:01 -0700 Subject: [PATCH] Fix build. --- posix.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posix.cc b/posix.cc index d4091868..0f5eec23 100644 --- a/posix.cc +++ b/posix.cc @@ -73,7 +73,7 @@ fmt::BufferedFile::~BufferedFile() FMT_NOEXCEPT(true) { fmt::BufferedFile::BufferedFile(fmt::StringRef filename, fmt::StringRef mode) { FMT_RETRY_VAL(file_, FMT_SYSTEM(fopen(filename.c_str(), mode.c_str())), 0); if (!file_) - throw SystemError(errno, "cannot open file {}", path); + throw SystemError(errno, "cannot open file {}", filename); } void fmt::BufferedFile::close() {