mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:16:12 +00:00
Cosmetics.
This commit is contained in:
parent
20c4e8528a
commit
ad2ffe5022
2 changed files with 2 additions and 2 deletions
|
@ -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" );
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue