Commit 88b84820 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

gdiplus: Void function should not return a value.

parent 08c78e07
...@@ -109,7 +109,7 @@ GpStatus WINAPI GdiplusNotificationHook(ULONG_PTR *token) ...@@ -109,7 +109,7 @@ GpStatus WINAPI GdiplusNotificationHook(ULONG_PTR *token)
void WINAPI GdiplusNotificationUnhook(ULONG_PTR token) void WINAPI GdiplusNotificationUnhook(ULONG_PTR token)
{ {
FIXME("%ld\n", token); FIXME("%ld\n", token);
return NotificationUnhook(token); NotificationUnhook(token);
} }
/***************************************************** /*****************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment