diff --git a/flow/Platform.cpp b/flow/Platform.cpp index 6272394a4d..6ec7cd2f65 100644 --- a/flow/Platform.cpp +++ b/flow/Platform.cpp @@ -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; }