| Index: base/os_compat_android.cc
|
| diff --git a/base/os_compat_android.cc b/base/os_compat_android.cc
|
| index d434c5bd7def635adc6789d9bb4d07ee3b95d527..118ad5e58cc830f82abb2cfa3265e27161983b4a 100644
|
| --- a/base/os_compat_android.cc
|
| +++ b/base/os_compat_android.cc
|
| @@ -18,7 +18,7 @@
|
| extern "C" {
|
|
|
| int futimes(int fd, const struct timeval tv[2]) {
|
| - const std::string fd_path = StringPrintf("/proc/self/fd/%d", fd);
|
| + const std::string fd_path = base::StringPrintf("/proc/self/fd/%d", fd);
|
| return utimes(fd_path.c_str(), tv);
|
| }
|
|
|
|
|