Index: sync/engine/model_type_worker.cc |
diff --git a/sync/engine/model_type_worker.cc b/sync/engine/model_type_worker.cc |
index 7e67dc87278410dff83e7e83bfd1e31c4c47877e..68293d51f180ac4d618164471cb6bc738602e5a3 100644 |
--- a/sync/engine/model_type_worker.cc |
+++ b/sync/engine/model_type_worker.cc |
@@ -178,9 +178,9 @@ SyncerError ModelTypeWorker::ProcessGetUpdatesResponse( |
} |
DVLOG(1) << ModelTypeToString(type_) << ": " |
- << base::StringPrintf( |
- "Delivering %zd applicable and %zd pending updates.", |
- response_datas.size(), pending_updates.size()); |
+ << base::StringPrintf("Delivering %" PRIuS " applicable and %" PRIuS |
+ " pending updates.", |
+ response_datas.size(), pending_updates.size()); |
// Forward these updates to the model thread so it can do the rest. |
model_type_processor_->OnUpdateReceived(data_type_state_, response_datas, |