Warning fixes.
This commit is contained in:
parent
f46eb1db43
commit
3ea0c073f8
|
@ -360,8 +360,10 @@ HRESULT WINAPI IDirect3DTexture2Impl_Load(
|
|||
DDSURFACEDESC *src_d, *dst_d;
|
||||
static void (*ptr_ColorTableEXT) (GLenum target, GLenum internalformat,
|
||||
GLsizei width, GLenum format, GLenum type, const GLvoid *table) = NULL;
|
||||
#if 0
|
||||
static BOOL color_table_queried = FALSE;
|
||||
|
||||
#endif
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, ilpD3DTexture2);
|
||||
TRACE("Copied surface %p to surface %p\n", ilpD3DTexture2->surface, This->surface);
|
||||
|
||||
|
|
|
@ -706,7 +706,8 @@ static DWORD MCICDA_Seek(UINT wDevID, DWORD dwFlags, LPMCI_SEEK_PARMS lpParms)
|
|||
at = lpParms->dwTo;
|
||||
break;
|
||||
default:
|
||||
TRACE("Seeking to ??=%lu\n", dwFlags);
|
||||
TRACE("Unknown seek action %08lX\n",
|
||||
(dwFlags & ~(MCI_NOTIFY|MCI_WAIT)));
|
||||
return MCIERR_UNSUPPORTED_FUNCTION;
|
||||
}
|
||||
if (CDROM_Audio_Seek(&wmcda->wcda, at, -1) == -1) {
|
||||
|
|
|
@ -131,5 +131,5 @@ DWORD WINAPI NPSNotifyRegisterA(enum NOTIFYTYPE,NOTIFYCALLBACK);
|
|||
LPVOID WINAPI NPSNotifyGetContextA(NOTIFYCALLBACK);
|
||||
#define NPSNotifyGetContext WINELIB_NAME_AW(NPSNotifyGetContext)
|
||||
|
||||
#endif _NETSPI_H_
|
||||
#endif /* _NETSPI_H_ */
|
||||
|
||||
|
|
|
@ -113,5 +113,6 @@ int main( int argc, char *argv[] )
|
|||
close_atom_table();
|
||||
dump_objects(); /* dump any remaining objects */
|
||||
#endif
|
||||
exit(0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1902,7 +1902,7 @@ void trace_request( struct thread *thread, const union generic_request *request
|
|||
req_dumpers[req]( request );
|
||||
fprintf( stderr, " )\n" );
|
||||
}
|
||||
else fprintf( stderr, "%08x: %d(???)\n", (unsigned int)thread, req );
|
||||
else fprintf( stderr, "%08x: %d(?)\n", (unsigned int)thread, req );
|
||||
}
|
||||
|
||||
void trace_reply( struct thread *thread, const union generic_request *request )
|
||||
|
|
Loading…
Reference in New Issue