Commit 2b42bb15 authored by Antoine Cellerier's avatar Antoine Cellerier

Add some more debug (this is easier than compiling at home).

parent c90405bf
......@@ -348,7 +348,8 @@ FILE *utf8_fopen( const char *filename, const char *mode )
char spath[MAX_PATH + 1];
if( GetShortPathNameW( wpath, spath, MAX_PATH ) )
{
fprintf( stderr, "fopen path: %s -> %s\n", wpath, spath );
fprintf( stderr, "A fopen path: %s -> %s\n", wpath, spath );
wfprintf( stderr, "W fopen path: %s -> %s\n", wpath, spath );
return fopen( spath, wmode );
}
fprintf( stderr, "GetShortPathName for %s failed\n", wpath );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment