dmsynth: Indirection level fix

Andrew Talbot andrew.talbot at talbotville.com
Thu Sep 20 18:02:30 CDT 2007


Changelog:
    dmsynth: Indirection level fix.

diff --git a/dlls/dmsynth/dmsynth_main.c b/dlls/dmsynth/dmsynth_main.c
index 5c2fae6..f144119 100644
--- a/dlls/dmsynth/dmsynth_main.c
+++ b/dlls/dmsynth/dmsynth_main.c
@@ -376,7 +376,7 @@ const char *debugstr_dmguid (const GUID
         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 */	



More information about the wine-patches mailing list