engine: net_http: fix missing newline

This commit is contained in:
Alibek Omarov
2025-05-25 19:21:23 +05:00
parent c3531b6499
commit 71040c7ed5

View File

@@ -198,7 +198,7 @@ static int HTTP_FileQueue( httpfile_t *file )
if( !( file->file = FS_Open( name, "wb+", true )))
{
Con_Printf( S_ERROR "HTTP: cannot open %s!", name );
Con_Printf( S_ERROR "HTTP: cannot open %s!\n", name );
HTTP_FreeFile( file, true );
return 0;
}