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

Francois Gouget fgouget at free.fr
Mon May 23 09:20:30 CDT 2011


---
 dlls/msvcrt/file.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrt/file.c b/dlls/msvcrt/file.c
index 90f8a45..61e31d1 100644
--- a/dlls/msvcrt/file.c
+++ b/dlls/msvcrt/file.c
@@ -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;
         }
-- 
1.7.4.4




More information about the wine-patches mailing list