msvcrt: Add a trailing '\n' to an ERR() call.

oldstable
Francois Gouget 2011-05-23 16:20:30 +02:00 committed by Alexandre Julliard
parent 6eff315555
commit 37daab560c
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ static inline MSVCRT_FILE* msvcrt_get_file(int i)
if(!ret) {
MSVCRT_fstream[i/MSVCRT_FD_BLOCK_SIZE] = MSVCRT_calloc(MSVCRT_FD_BLOCK_SIZE, sizeof(file_crit));
if(!MSVCRT_fstream[i/MSVCRT_FD_BLOCK_SIZE]) {
ERR("out of memory");
ERR("out of memory\n");
*MSVCRT__errno() = MSVCRT_ENOMEM;
return NULL;
}