From ad2ffe5022e7cf77a451a71c709d0cf4539d8238 Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Mon, 22 Mar 1999 14:52:46 +0000 Subject: [PATCH] Cosmetics. --- loader/pe_image.c | 2 +- msdos/int21.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/loader/pe_image.c b/loader/pe_image.c index f05301dcd40..b6e046648f0 100644 --- a/loader/pe_image.c +++ b/loader/pe_image.c @@ -562,7 +562,7 @@ HMODULE PE_LoadImage( HFILE hFile, OFSTRUCT *ofs, LPCSTR *modName ) else { FIXME( win32, - "Need to relocate %s, but no relocation records present (%s).\n", + "FATAL: Need to relocate %s, but no relocation records present (%s). Try to run that file directly !\n", ofs->szPathName, (nt->FileHeader.Characteristics&IMAGE_FILE_RELOCS_STRIPPED)? "stripped during link" : "unknown reason" ); diff --git a/msdos/int21.c b/msdos/int21.c index 1549b69e691..31435440560 100644 --- a/msdos/int21.c +++ b/msdos/int21.c @@ -1826,7 +1826,7 @@ void WINAPI DOS3Call( CONTEXT *context ) case 0x4a: /* RESIZE MEMORY BLOCK */ TRACE(int21,"RESIZE MEMORY segment %04lX to %d paragraphs\n", ES_reg(context), BX_reg(context)); if (!ISV86(context)) - FIXME(int21,"RESIZE MEMORY probably insufficent implementation. Expect crash soon\n"); + FIXME(int21,"RESIZE MEMORY probably insufficient implementation. Expect crash soon\n"); { LPVOID *mem = DOSMEM_ResizeBlock(0,DOSMEM_MapDosToLinear(ES_reg(context)<<4), BX_reg(context)<<4,NULL);