From f5a5cc067a8d01ffd62419e830c9dd61dce97b30 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 20 Apr 2012 08:40:15 +0200 Subject: [PATCH] msi: Make create_record() static. --- dlls/msi/automation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/automation.c b/dlls/msi/automation.c index f1a353207e7..375191e802d 100644 --- a/dlls/msi/automation.c +++ b/dlls/msi/automation.c @@ -926,7 +926,7 @@ static HRESULT RecordImpl_Invoke( return S_OK; } -HRESULT create_record(MSIHANDLE msiHandle, IDispatch **disp) +static HRESULT create_record(MSIHANDLE msiHandle, IDispatch **disp) { AutomationObject *record; HRESULT hr;