Andrew Talbot : dmsynth: Indirection level fix.

Alexandre Julliard julliard at winehq.org
Fri Sep 21 07:23:02 CDT 2007


Module: wine
Branch: master
Commit: 7bea8dd9b62412858ac05daf093127150e8d179b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7bea8dd9b62412858ac05daf093127150e8d179b

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Fri Sep 21 00:02:30 2007 +0100

dmsynth: Indirection level fix.

---

 dlls/dmsynth/dmsynth_main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 *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 */	




More information about the wine-cvs mailing list