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

Unified Diff: components/safe_browsing_db/v4_store.cc

Issue 2126373002: Tiny: Fix 626411: Use PRIsFP macro instead of %s for path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: components/safe_browsing_db/v4_store.cc
diff --git a/components/safe_browsing_db/v4_store.cc b/components/safe_browsing_db/v4_store.cc
index 0920f2bf3e9cdac00c4c1a30750ef14e37e07141..2ef5c039683ef2bb14780aa67f8b69f066cc1470 100644
--- a/components/safe_browsing_db/v4_store.cc
+++ b/components/safe_browsing_db/v4_store.cc
@@ -67,8 +67,8 @@ std::string V4Store::DebugString() const {
std::string state_base64;
base::Base64Encode(state_, &state_base64);
- return base::StringPrintf("path: %s; state: %s", store_path_.value().c_str(),
- state_base64.c_str());
+ return base::StringPrintf("path: %" PRIsFP "; state: %s",
+ store_path_.value().c_str(), state_base64.c_str());
}
bool V4Store::Reset() {
« 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