mmdevapi: Remove a stray semicolon in macro definition.

oldstable
Andrew Nguyen 2011-05-18 07:17:48 -05:00 committed by Alexandre Julliard
parent f5e555660d
commit a67941d393
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ static BOOL load_driver(const WCHAR *name)
}
#define LDFC(n) do { drvs.p##n = (void*)GetProcAddress(drvs.module, #n);\
if(!drvs.p##n) { FreeLibrary(drvs.module); return FALSE; } } while(0);
if(!drvs.p##n) { FreeLibrary(drvs.module); return FALSE; } } while(0)
LDFC(GetEndpointIDs);
LDFC(GetAudioEndpoint);
#undef LDFC