dmusic: Indirection level fix.

oldstable
Andrew Talbot 2007-09-21 00:02:37 +01:00 committed by Alexandre Julliard
parent 7bea8dd9b6
commit f56ca61817
1 changed files with 1 additions and 1 deletions

View File

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