Fixed typo causing mac build failure.

This commit is contained in:
Stephen Atherton 2018-12-02 22:03:21 -08:00
parent 3bf3fbed74
commit e2673b2bbc
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ void getDiskBytes(std::string const& directory, int64_t& free, int64_t& total) {
#elif defined(__APPLE__)
struct statfs buf;
if (statfs(directory.c_str(), &buf)) {
Error e = systemErrorCodeToError()
Error e = systemErrorCodeToError();
TraceEvent(SevError, "GetDiskBytesStatfsError").detail("Directory", directory).GetLastError().error(e);
throw e;
}