Index: runtime/bin/file_macos.cc |
diff --git a/runtime/bin/file_macos.cc b/runtime/bin/file_macos.cc |
index 14b2fd82daa2793e1e94e700d1c911cb4b8374f4..37b5328f2c5a293e06c2dd293a9c7123e0d6cba6 100644 |
--- a/runtime/bin/file_macos.cc |
+++ b/runtime/bin/file_macos.cc |
@@ -170,7 +170,7 @@ bool File::Delete(const char* name) { |
} |
-off_t File::LengthFromName(const char* name) { |
+off_t File::LengthFromPath(const char* name) { |
struct stat st; |
if (TEMP_FAILURE_RETRY(stat(name, &st)) == 0) { |
return st.st_size; |