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

Unified Diff: runtime/vm/dev_fs.cc

Issue 2057283003: Fix bots (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dev_fs.cc
diff --git a/runtime/vm/dev_fs.cc b/runtime/vm/dev_fs.cc
index 6a9a76c62c381f7d8f18320de531f4b710f8a52e..0ad6b0d3040fa988778f5fa64e64b08a1be3c93a 100644
--- a/runtime/vm/dev_fs.cc
+++ b/runtime/vm/dev_fs.cc
@@ -108,7 +108,8 @@ class FileSystem {
for (iter = files_.begin(); iter != files_.end(); iter++) {
JSONObject file_info(&jsarr);
file_info.AddProperty("name", iter->first.c_str());
- file_info.AddProperty("size", static_cast<int64_t>(iter->second->size()));
+ file_info.AddProperty64("size",
+ static_cast<int64_t>(iter->second->size()));
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698