Fixes a few of the many compiler warnings.

This commit is contained in:
Huw D M Davies 1998-11-14 17:13:51 +00:00 committed by Alexandre Julliard
parent 698a8b17b7
commit 7b06d98404
3 changed files with 5 additions and 4 deletions

View File

@ -999,7 +999,7 @@ HBITMAP32 WINAPI CreateDIBSection32 (HDC32 hdc, BITMAPINFO *bmi, UINT32 usage,
/* Clean up in case of errors */
if (!res || !bmp || !dib || !bm.bmBits || (bm.bmBitsPixel <= 8 && !colorMap))
{
TRACE(bitmap, "got an error res=%lu, bmp=%p, dib=%p, bm.bmBits=%p\n",
TRACE(bitmap, "got an error res=%08x, bmp=%p, dib=%p, bm.bmBits=%p\n",
res, bmp, dib, bm.bmBits);
if (bm.bmBits)
{

View File

@ -514,7 +514,7 @@ UINT32 WINAPI GetEnhMetaFilePaletteEntries(HENHMETAFILE32 hemf,
LPPALETTEENTRY lppe)
{
LPENHMETAHEADER h = GlobalLock32(hemf);
UINT32 temp = h->nPalEntries;
if ( h == NULL ){
GlobalUnlock32(hemf);
return(0);
@ -545,7 +545,7 @@ HENHMETAFILE32 WINAPI SetWinMetaFileBits(UINT32 cbBuffer,
)
{
FIXME(metafile,"Stub\n");
return NULL;
return 0;
}

View File

@ -217,7 +217,8 @@ BOOL32 WINAPI SetConsoleCtrlHandler( HANDLER_ROUTINE *func, BOOL32 add )
done++;
}
if (!done)
WARN(console, "Attempt to remove non-installed CtrlHandler %p\n");
WARN(console, "Attempt to remove non-installed CtrlHandler %p\n",
func);
return (done);
}
return (done);