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

Unified Diff: storage/browser/fileapi/dump_file_system.cc

Issue 1303063010: clang/win: Make dump_file_system.cc build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/dump_file_system.cc
diff --git a/storage/browser/fileapi/dump_file_system.cc b/storage/browser/fileapi/dump_file_system.cc
index 6707fac1980c978132141c3c5a433ac5959cff88..67f0aa6c7546c7adcfc42fc5c232abf1fef79896 100644
--- a/storage/browser/fileapi/dump_file_system.cc
+++ b/storage/browser/fileapi/dump_file_system.cc
@@ -93,7 +93,7 @@ static void DumpDirectoryTree(const std::string& origin_name,
SandboxDirectoryDatabase::FileInfo info;
if (!directory_db.GetFileInfo(id, &info)) {
- ShowMessageAndExit(base::StringPrintf("GetFileInfo failed for %"PRId64,
+ ShowMessageAndExit(base::StringPrintf("GetFileInfo failed for %" PRId64,
id));
}
@@ -103,7 +103,7 @@ static void DumpDirectoryTree(const std::string& origin_name,
if (info.is_directory()) {
if (!directory_db.ListChildren(id, &children)) {
ShowMessageAndExit(base::StringPrintf(
- "ListChildren failed for %s (%"PRId64")",
+ "ListChildren failed for %s (%" PRId64 ")",
info.name.c_str(), id));
}
@@ -122,7 +122,7 @@ static void DumpDirectoryTree(const std::string& origin_name,
base::GetFileSize(origin_dir.Append(info.data_path), &size);
}
// TODO(hamaji): Modification time?
- printf("%s%s %"PRId64" %"PRId64" %s\n",
+ printf("%s%s %" PRId64 " %" PRId64 " %s\n",
display_name,
directory_suffix,
id,
« 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