gdiplus: Void function should not return a value

Andrew Talbot andrew.talbot at talbotville.com
Wed Nov 26 14:37:32 CST 2008


Changelog:
    gdiplus: Void function should not return a value.

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-patches mailing list