Fixed typo causing mac build failure.
This commit is contained in:
parent
3bf3fbed74
commit
e2673b2bbc
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue