mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-03 09:22:45 +00:00
Fix another typo
Small typo fix.
This commit is contained in:
parent
264ffcb6f7
commit
cf9ae278f9
1 changed files with 2 additions and 2 deletions
|
@ -452,7 +452,7 @@ bool idZipBuilder::CreateZipFileFromFiles( const idList< idFile_Memory* >& srcFi
|
|||
// do not allow overwrite as this should be a tempfile attempt to check the file out
|
||||
if( !Sys_IsFileWritable( zipFileName ) )
|
||||
{
|
||||
idLib::PrintfIf( zip_verbosity.GetBool(), "File %s not writeable, cannot proceed.\n", zipFileName.c_str() );
|
||||
idLib::PrintfIf( zip_verbosity.GetBool(), "File %s not writable, cannot proceed.\n", zipFileName.c_str() );
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -549,7 +549,7 @@ zipFile idZipBuilder::CreateZipFile( const char* name )
|
|||
// do not allow overwrite as this should be a tempfile attempt to check the file out
|
||||
if( !Sys_IsFileWritable( name ) )
|
||||
{
|
||||
idLib::PrintfIf( zip_verbosity.GetBool(), "File %s not writeable, cannot proceed.\n", name );
|
||||
idLib::PrintfIf( zip_verbosity.GetBool(), "File %s not writable, cannot proceed.\n", name );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue