Chromium Code Reviews| Index: runtime/bin/file_linux.cc |
| diff --git a/runtime/bin/file_linux.cc b/runtime/bin/file_linux.cc |
| index 3a731355a1911019ca808464bb9d47dcf50c796f..459a69271a4f0055c0850da10d746ac525003ab3 100644 |
| --- a/runtime/bin/file_linux.cc |
| +++ b/runtime/bin/file_linux.cc |
| @@ -168,7 +168,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; |