Chromium Code Reviews| Index: runtime/bin/file_android.cc |
| diff --git a/runtime/bin/file_android.cc b/runtime/bin/file_android.cc |
| index 7ae6415fe0b9ceefa9273d3b3e5e1a479f757379..390ef4dc6b202b993951655419caa333af167df1 100644 |
| --- a/runtime/bin/file_android.cc |
| +++ b/runtime/bin/file_android.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) { |
|
Søren Gjesse
2013/02/27 15:20:30
name -> path (for all functions)?
|
| struct stat st; |
| if (TEMP_FAILURE_RETRY(stat(name, &st)) == 0) { |
| return st.st_size; |