From 68b09c2aa66bea46b209e480ff514912f910e6db Mon Sep 17 00:00:00 2001 From: Andrey Gusev Date: Tue, 28 May 2019 23:03:40 +0300 Subject: [PATCH] oledb32: Remove duplicate WINAPI. Signed-off-by: Andrey Gusev Signed-off-by: Alexandre Julliard --- dlls/oledb32/errorinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/oledb32/errorinfo.c b/dlls/oledb32/errorinfo.c index f1c9cd17ef1..62491673bcd 100644 --- a/dlls/oledb32/errorinfo.c +++ b/dlls/oledb32/errorinfo.c @@ -219,13 +219,13 @@ static HRESULT WINAPI errorrec_QueryInterface(IErrorRecords *iface, REFIID riid, return IErrorInfo_QueryInterface(&This->IErrorInfo_iface, riid, ppvObject); } -static ULONG WINAPI WINAPI errorrec_AddRef(IErrorRecords *iface) +static ULONG WINAPI errorrec_AddRef(IErrorRecords *iface) { errorrecords *This = impl_from_IErrorRecords(iface); return IErrorInfo_AddRef(&This->IErrorInfo_iface); } -static ULONG WINAPI WINAPI errorrec_Release(IErrorRecords *iface) +static ULONG WINAPI errorrec_Release(IErrorRecords *iface) { errorrecords *This = impl_from_IErrorRecords(iface); return IErrorInfo_Release(&This->IErrorInfo_iface);