| Index: chrome/common/ipc_message_utils.h
|
| diff --git a/chrome/common/ipc_message_utils.h b/chrome/common/ipc_message_utils.h
|
| index c63eb6c18c89b4d9f93d4d91fd4e4d2c0b7ea67f..20f8706fbc419bcda338f8cf135a9d5413a7799a 100644
|
| --- a/chrome/common/ipc_message_utils.h
|
| +++ b/chrome/common/ipc_message_utils.h
|
| @@ -770,7 +770,7 @@ struct ParamTraits<IPC::ChannelHandle> {
|
| ;
|
| }
|
| static void Log(const param_type& p, std::wstring* l) {
|
| - l->append(StringPrintf(L"ChannelHandle(%s", p.name.c_str()));
|
| + l->append(ASCIIToWide(StringPrintf("ChannelHandle(%s", p.name.c_str())));
|
| #if defined(OS_POSIX)
|
| ParamTraits<base::FileDescriptor>::Log(p.socket, l);
|
| #endif
|
|
|