dpnet: Indirection level fix.

This commit is contained in:
Andrew Talbot 2007-09-21 00:02:44 +01:00 committed by Alexandre Julliard
parent f56ca61817
commit eecc57f104
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ const char *debugstr_SP(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 */