dmcompos: Indirection level fix.

This commit is contained in:
Andrew Talbot 2007-09-19 21:03:23 +01:00 committed by Alexandre Julliard
parent 8be5b58ba7
commit 05cb03bc10
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,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 */