Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Unified Diff: runtime/bin/file_android.cc

Issue 3008943002: [dart:io] Build fixes for Namespaces (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/namespace_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file_android.cc
diff --git a/runtime/bin/file_android.cc b/runtime/bin/file_android.cc
index 36a27cfed58e9b19df29bd8b4adeb76df8d6ddc1..06fdea43dcec049c4676b67349885a6eb9b147c3 100644
--- a/runtime/bin/file_android.cc
+++ b/runtime/bin/file_android.cc
@@ -497,7 +497,7 @@ bool File::SetLastAccessed(Namespace* namespc,
const char* name,
int64_t millis) {
// First get the current times.
- struct stat64 st;
+ struct stat st;
if (!StatHelper(namespc, name, &st)) {
return false;
}
@@ -514,7 +514,7 @@ bool File::SetLastModified(Namespace* namespc,
const char* name,
int64_t millis) {
// First get the current times.
- struct stat64 st;
+ struct stat st;
if (!StatHelper(namespc, name, &st)) {
return false;
}
« no previous file with comments | « no previous file | runtime/bin/namespace_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698