Module: wine Branch: master Commit: f9b91b5a6b21856d6b8937bc33b19476d7001b2f URL: http://source.winehq.org/git/wine.git/?a=commit;h=f9b91b5a6b21856d6b8937bc33... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Sat Feb 20 16:31:56 2016 +0900 quartz: Remove forward declaration of removed variable. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/quartz/pin.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/quartz/pin.c b/dlls/quartz/pin.c index 7212807..a2651fd 100644 --- a/dlls/quartz/pin.c +++ b/dlls/quartz/pin.c @@ -29,8 +29,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(quartz); -static const IPinVtbl PullPin_Vtbl; - #define ALIGNDOWN(value,boundary) ((value)/(boundary)*(boundary)) #define ALIGNUP(value,boundary) (ALIGNDOWN((value)+(boundary)-1, (boundary)))