Commit 69f7f9b0 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Fix windows compilation

parent 3fdc07df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3417,7 +3417,7 @@ tor_get_avail_disk_space(const char *path)
  if (!ok) {
    return -1;
  }
  return (int64_t)freeBytesAvail;
  return (int64_t)freeBytesAvail.QuadPart;
#else
  (void)path;
  errno = ENOSYS;