[vlc-commits] Win32: fix encoding of crash dumps
Pierre Ynard
git at videolan.org
Wed Apr 13 00:02:19 CEST 2011
vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Wed Apr 13 00:01:22 2011 +0200| [7e8f17ffa5918d1a177c103013e02f555407f3b2] | committer: Pierre Ynard
Win32: fix encoding of crash dumps
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7e8f17ffa5918d1a177c103013e02f555407f3b2
---
bin/winvlc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/bin/winvlc.c b/bin/winvlc.c
index 09e739c..0c6c29e 100644
--- a/bin/winvlc.c
+++ b/bin/winvlc.c
@@ -295,7 +295,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