Enable more compiler warnings and treat them as errors.

This commit is contained in:
Brian Phlipot
2023-02-02 11:54:17 -08:00
committed by teejusb
parent f8f6f12999
commit 4a6b1a743c
141 changed files with 625 additions and 757 deletions
+2 -2
View File
@@ -61,8 +61,8 @@ bool RageFileDriverZip::Load( const RString &sPath )
bool RageFileDriverZip::Load( RageFileBasic *pFile )
{
ASSERT( m_pZip == nullptr ); /* don't load twice */
m_sPath = ssprintf("%p", pFile);
m_Mutex.SetName( ssprintf("RageFileDriverZip(%p)", pFile) );
m_sPath = ssprintf("%p", static_cast<void*>(pFile));
m_Mutex.SetName( ssprintf("RageFileDriverZip(%p)", static_cast<void*>(pFile)) );
m_pZip = pFile;