From 71040c7ed5fae916f97f30c2a4e4781237392acd Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 25 May 2025 19:21:23 +0500 Subject: [PATCH] engine: net_http: fix missing newline --- engine/common/net_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/net_http.c b/engine/common/net_http.c index b8bda26f..bd5eb6c6 100644 --- a/engine/common/net_http.c +++ b/engine/common/net_http.c @@ -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; }