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

Unified Diff: chrome/browser/sync/glue/tab_node_pool.cc

Issue 13721002: Add a space between string literals and PRIuS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 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 | sync/engine/apply_control_data_updates_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/tab_node_pool.cc
diff --git a/chrome/browser/sync/glue/tab_node_pool.cc b/chrome/browser/sync/glue/tab_node_pool.cc
index 3f008eec0fba26a5918e3601580158e1fed612a1..69ed09f83d70f7746a380af96b6c0beb72d27733 100644
--- a/chrome/browser/sync/glue/tab_node_pool.cc
+++ b/chrome/browser/sync/glue/tab_node_pool.cc
@@ -32,7 +32,7 @@ TabNodePool::~TabNodePool() {}
std::string TabNodePool::TabIdToTag(
const std::string machine_tag,
size_t tab_node_id) {
- return base::StringPrintf("%s %"PRIuS"", machine_tag.c_str(), tab_node_id);
+ return base::StringPrintf("%s %" PRIuS "", machine_tag.c_str(), tab_node_id);
Nico 2013/04/05 17:05:37 (I think you only need the space in front of PRIus
stuartmorgan 2013/04/05 18:48:08 Yeah, but I thought that looked really strange sin
}
void TabNodePool::AddTabNode(int64 sync_id) {
« no previous file with comments | « no previous file | sync/engine/apply_control_data_updates_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698