| Index: ppapi/native_client/src/trusted/plugin/temporary_file.cc
|
| diff --git a/ppapi/native_client/src/trusted/plugin/temporary_file.cc b/ppapi/native_client/src/trusted/plugin/temporary_file.cc
|
| index ac02db2f755020f2d053c0d6f41e6cb93cd36e69..46167a14976084ace769cfb9746b380b1104d9c5 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/temporary_file.cc
|
| +++ b/ppapi/native_client/src/trusted/plugin/temporary_file.cc
|
| @@ -30,7 +30,7 @@ TempFile::TempFile(Plugin* plugin) : plugin_(plugin),
|
| PLUGIN_PRINTF(("TempFile::TempFile\n"));
|
| ++next_identifier;
|
| SNPRINTF(reinterpret_cast<char *>(identifier_), sizeof identifier_,
|
| - "%"NACL_PRIu32, next_identifier);
|
| + "%" NACL_PRIu32, next_identifier);
|
| }
|
|
|
| TempFile::~TempFile() {
|
|
|