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

Alexandre Julliard julliard at winehq.org
Mon May 23 13:25:00 CDT 2011


Module: wine
Branch: master
Commit: 37daab560ce4cd1a7555ea61c74e5e1ea94e3895
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=37daab560ce4cd1a7555ea61c74e5e1ea94e3895

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon May 23 16:20:30 2011 +0200

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

---

 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;
         }




More information about the wine-cvs mailing list