Skip to content
Snippets Groups Projects
Commit 05de88f6 authored by Alexandre Janniaux's avatar Alexandre Janniaux Committed by Steve Lhomme
Browse files

winvlc: silence unused warnings


If breakpad is not used, the crash_handling variable is not used too,
but as it's used otherwise this should be silenced.

(cherry picked from commit 81c60915)
Signed-off-by: default avatarSteve Lhomme <robux4@ycbcr.xyz>
parent 28b191f3
No related branches found
No related tags found
1 merge request!4652[3.0] breakpad fixes
......@@ -221,6 +221,8 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
CheckCrashDump( &path[0] );
eh = InstallCrashHandler( &path[0] );
}
#else
(void)crash_handling;
#endif
_setmode( _fileno( stdin ), _O_BINARY ); /* Needed for pipes */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment