905f9efbae9e1c87691bdf9a0bec469da1b135d7

An unsigned int was passed through %lu instead of %u (harmless on 32bit). More seriously, a wide string was passed through %s, which means only the first byte in the string got printed (since the 2nd byte is likely 0 in UCS-2). Use %ls to include the whole string, even though it might not be renderable in the target 8bit buffer. BUG=chromium:82385 R=henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/22409004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6946 4adac7df-926f-26a2-2b94-8c16560cd09d
Description
No description provided
Languages
C++
88.6%
C
3.3%
Java
3%
Objective-C++
1.9%
Python
1.9%
Other
1%