From a9cad4a00a0cf3d8d944d9f41f501172b6f9161a Mon Sep 17 00:00:00 2001 From: veliant Date: Tue, 22 Dec 2015 08:08:31 +0000 Subject: [PATCH] Disable 'unresolved' message for coff git-svn-id: svn://kolibrios.org@5998 a494cfbc-eb01-0410-851d-a64ba20cac60 --- kernel/trunk/core/dll.inc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/kernel/trunk/core/dll.inc b/kernel/trunk/core/dll.inc index b292db4d02..1f5f7d0ace 100644 --- a/kernel/trunk/core/dll.inc +++ b/kernel/trunk/core/dll.inc @@ -747,12 +747,13 @@ proc fix_coff_symbols stdcall uses ebx esi, sec:dword, symbols:dword,\ test eax, eax jnz @F - mov esi, msg_unresolved - call sys_msg_board_str - mov esi, edi - call sys_msg_board_str - mov esi, msg_CR - call sys_msg_board_str + ; disable debug msg + ;mov esi, msg_unresolved + ;call sys_msg_board_str + ;mov esi, edi + ;call sys_msg_board_str + ;mov esi, msg_CR + ;call sys_msg_board_str mov [retval], 0 @@: