dmsynth: Indirection level fix.

This commit is contained in:
Andrew Talbot 2007-09-21 00:02:30 +01:00 committed by Alexandre Julliard
parent 5d0f2bb6a6
commit 7bea8dd9b6
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ const char *debugstr_dmguid (const GUID *id) {
if (!id) return "(null)";
for (i = 0; i < sizeof(guids)/sizeof(guids[0]); i++) {
if (IsEqualGUID(id, &guids[i].guid))
if (IsEqualGUID(id, guids[i].guid))
return guids[i].name;
}
/* if we didn't find it, act like standard debugstr_guid */