mmdevapi: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
14afcb8ccd
commit
b6717dd3b1
|
@ -271,7 +271,7 @@ static IClassFactoryImpl MMDEVAPI_CF[] = {
|
||||||
|
|
||||||
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
||||||
{
|
{
|
||||||
int i = 0;
|
unsigned int i = 0;
|
||||||
TRACE("(%s, %s, %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
|
TRACE("(%s, %s, %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
|
||||||
|
|
||||||
if(!init_driver()){
|
if(!init_driver()){
|
||||||
|
|
Loading…
Reference in New Issue