Fixed compile error with clang

This commit is contained in:
Robert Beckebans 2024-06-27 23:22:02 +02:00
parent ce68905287
commit 53925f9f31
2 changed files with 5 additions and 5 deletions

View file

@ -13,10 +13,10 @@ REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/tiny
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/oggvorbis/*.h
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/oggvorbis/*.c
astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.h
astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.c
astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.cpp
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.h
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.c
REM astyle.exe -v --formatted --options=astyle-options.ini --recursive libs/zlib/*.cpp
astyle.exe -v -Q --options=astyle-options.ini --recursive shaders/*.hlsl
pause
pause

View file

@ -3596,7 +3596,7 @@ idFile* idFileSystemLocal::GetZipFile( const char* fileName, bool memFile )
{
if( fs_debugResources.GetBool() )
{
idLib::Printf( "MEM: Allocating %05d bytes for a resource load\n", rc.length );
idLib::Printf( "MEM: Allocating %05llu bytes for a resource load\n", rc.length );
}
buf = ( byte* )Mem_Alloc( rc.length, TAG_TEMP );
}