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

dswave: Indirection level fix.

parent e2e25eac
...@@ -328,7 +328,7 @@ const char *debugstr_dmguid (const GUID *id) { ...@@ -328,7 +328,7 @@ const char *debugstr_dmguid (const GUID *id) {
if (!id) return "(null)"; if (!id) return "(null)";
for (i = 0; i < sizeof(guids)/sizeof(guids[0]); i++) { 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; return guids[i].name;
} }
/* if we didn't find it, act like standard debugstr_guid */ /* 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