summaryrefslogtreecommitdiffstats
path: root/base/os_compat_android.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/os_compat_android.cc')
-rw-r--r--base/os_compat_android.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/os_compat_android.cc b/base/os_compat_android.cc
index d434c5b..118ad5e 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);
}