Minor cosmetic changes.

oldstable
Andreas Mohr 2000-08-25 21:56:19 +00:00 committed by Alexandre Julliard
parent 8337f28b70
commit 217a682b4f
6 changed files with 7 additions and 7 deletions

View File

@ -3016,7 +3016,7 @@ TREEVIEW_Expand (HWND hwnd, WPARAM wParam, LPARAM lParam)
if (! wineItem)
{
ERR(
"Catastropic situation, cannot retreive item #%d\n",
"Catastrophic situation, cannot retrieve item #%d\n",
expand);
return FALSE;
}

View File

@ -2602,7 +2602,7 @@ int X11DRV_DIB_SetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
descr->infoWidth, lines, 32, 0 );
bmpImage->data = calloc( lines, bmpImage->bytes_per_line );
if(bmpImage->data == NULL) {
ERR("Out of memory!");
ERR("Out of memory!\n");
XDestroyImage( bmpImage );
return lines;
}
@ -2705,7 +2705,7 @@ int X11DRV_DIB_GetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
descr->infoWidth, lines, 32, 0 );
bmpImage->data = calloc( lines, bmpImage->bytes_per_line );
if(bmpImage->data == NULL) {
ERR("Out of memory!");
ERR("Out of memory!\n");
XDestroyImage( bmpImage );
return lines;
} }

View File

@ -245,7 +245,7 @@ extern void ASPI_DOS_HandleInt(CONTEXT86 *context);
/* NOTE: Interrupts might get called from three modes: real mode, 16-bit, and
* (via DeviceIoControl) 32-bit. For automatic conversion of pointer
* parameters, interrupt handlers should use CTX_SEG_OFF_TO_LIN with
* the contents of a segement register as second and the contents of
* the contents of a segment register as second and the contents of
* a *32-bit* general register as third parameter, e.g.
* CTX_SEG_OFF_TO_LIN( context, DS_reg(context), EDX_reg(context) )
* This will generate a linear pointer in all three cases:

View File

@ -508,7 +508,7 @@ INT16 WINAPI OpenComm16(LPCSTR device,UINT16 cbInQueue,UINT16 cbOutQueue)
/* not enough memory */
tcsetattr(COM[port].fd,TCSANOW,&m_stat[port]);
close(COM[port].fd);
ERR("out of memory");
ERR("out of memory\n");
return IE_MEMORY;
}

View File

@ -63,7 +63,7 @@ static VERSION_DATA VersionData[NB_WINDOWS_VERSIONS] =
},
/* WIN98 */
{
0x07005F03, /* FIXME: need DOS value from real Win98 */
0x070A5F03,
0xC0000A04,
{
sizeof(OSVERSIONINFOA), 4, 10, 0x40A07CE,

View File

@ -82,7 +82,7 @@ void WINAPI INT_Int2fHandler( CONTEXT86 *context )
DI_reg(context) = 0x0000;
break;
case 0x08:
FIXME("No real-mode handler for errors yet! (bye!)");
FIXME("No real-mode handler for errors yet! (bye!)\n");
break;
default:
INT_BARF(context, 0x2f);