Andrew Talbot : gdiplus: Void function should not return a value.

Alexandre Julliard julliard at winehq.org
Fri Nov 28 07:16:34 CST 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Wed Nov 26 20:37:32 2008 +0000

gdiplus: Void function should not return a value.

---

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

diff --git a/dlls/gdiplus/gdiplus.c b/dlls/gdiplus/gdiplus.c
index c9c3102..35caad8 100644
--- a/dlls/gdiplus/gdiplus.c
+++ b/dlls/gdiplus/gdiplus.c
@@ -109,7 +109,7 @@ GpStatus WINAPI GdiplusNotificationHook(ULONG_PTR *token)
 void WINAPI GdiplusNotificationUnhook(ULONG_PTR token)
 {
     FIXME("%ld\n", token);
-    return NotificationUnhook(token);
+    NotificationUnhook(token);
 }
 
 /*****************************************************




More information about the wine-cvs mailing list