[vlc-commits] Win32: fix encoding of crash dumps
Pierre Ynard
git at videolan.org
Wed Apr 13 00:10:07 CEST 2011
vlc/vlc-1.1 | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Wed Apr 13 00:01:22 2011 +0200| [d395efc287257c79909cf368d913ffa35f8624a9] | committer: Pierre Ynard
Win32: fix encoding of crash dumps
(cherry picked from commit 7e8f17ffa5918d1a177c103013e02f555407f3b2)
Signed-off-by: Pierre Ynard <linkfanel at yahoo.fr>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=d395efc287257c79909cf368d913ffa35f8624a9
---
bin/winvlc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/bin/winvlc.c b/bin/winvlc.c
index 77ba827..8b47155 100644
--- a/bin/winvlc.c
+++ b/bin/winvlc.c
@@ -308,7 +308,7 @@ LONG WINAPI vlc_exception_filter(struct _EXCEPTION_POINTERS *lpExceptionInfo)
{
unsigned int i;
for( i = 0; i < pException->NumberParameters; i++ )
- fprintf( fd, " | %08x", pException->ExceptionInformation[i] );
+ fwprintf( fd, L" | %08x", pException->ExceptionInformation[i] );
}
fwprintf( fd, L"\n\n[context]\nEDI:%08x\nESI:%08x\n" \
More information about the vlc-commits
mailing list