Cosmetics.

This commit is contained in:
Andreas Mohr 1999-03-22 14:52:46 +00:00 committed by Alexandre Julliard
parent 20c4e8528a
commit ad2ffe5022
2 changed files with 2 additions and 2 deletions

View file

@ -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" );

View file

@ -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);