Commit b6717dd3 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

mmdevapi: Avoid signed-unsigned integer comparisons.

parent 14afcb8c
......@@ -271,7 +271,7 @@ static IClassFactoryImpl MMDEVAPI_CF[] = {
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);
if(!init_driver()){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment