Commit 05cb03bc authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

dmcompos: Indirection level fix.

parent 8be5b58b
......@@ -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 */
......
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