Index: ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.cc |
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.cc b/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.cc |
index 2df745721ce89b60af1713cfad84939083638140..b27bad16590df8d456eb87dc6da9a7bb93c9116d 100644 |
--- a/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.cc |
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_translate_thread.cc |
@@ -73,7 +73,8 @@ void PnaclTranslateThread::RunTranslate( |
// Called from main thread to send bytes to the translator. |
void PnaclTranslateThread::PutBytes(std::vector<char>* bytes, |
int count) { |
- PLUGIN_PRINTF(("PutBytes (this=%p, bytes=%p, size=%"NACL_PRIuS", count=%d)\n", |
+ PLUGIN_PRINTF(("PutBytes (this=%p, bytes=%p, size=%" NACL_PRIuS |
+ ", count=%d)\n", |
this, bytes, bytes ? bytes->size() : 0, count)); |
size_t buffer_size = 0; |
// If we are done (error or not), Signal the translation thread to stop. |
@@ -185,7 +186,8 @@ void PnaclTranslateThread::DoTranslate() { |
while(!done_ && data_buffers_.size() == 0) { |
NaClXCondVarWait(&buffer_cond_, &cond_mu_); |
} |
- PLUGIN_PRINTF(("PnaclTranslateThread awake (done=%d, size=%"NACL_PRIuS")\n", |
+ PLUGIN_PRINTF(("PnaclTranslateThread awake (done=%d, size=%" NACL_PRIuS |
+ ")\n", |
done_, data_buffers_.size())); |
if (data_buffers_.size() > 0) { |
std::vector<char> data; |