Chromium Code Reviews| 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) { |