dswave: Indirection level fix.

oldstable
Andrew Talbot 2007-09-21 00:02:51 +01:00 committed by Alexandre Julliard
parent e2e25eacd9
commit dcf7252be3
1 changed files with 1 additions and 1 deletions

View File

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