From eecc57f1047ca780fbfb2167fc0e9b859ff2c395 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Fri, 21 Sep 2007 00:02:44 +0100 Subject: [PATCH] dpnet: Indirection level fix. --- dlls/dpnet/address.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dpnet/address.c b/dlls/dpnet/address.c index 0e45b8098eb..c0b924c8ec6 100644 --- a/dlls/dpnet/address.c +++ b/dlls/dpnet/address.c @@ -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 */