secur32: Make alloc_lsa_connection() static.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2018-04-30 04:31:35 +02:00 committed by Alexandre Julliard
parent a66af35ab9
commit ec55cd694a
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ NTSTATUS WINAPI LsaCallAuthenticationPackage(HANDLE lsa_handle, ULONG package_id
return STATUS_INVALID_PARAMETER;
}
struct lsa_connection *alloc_lsa_connection(void)
static struct lsa_connection *alloc_lsa_connection(void)
{
struct lsa_connection *ret;
if (!(ret = heap_alloc(sizeof(*ret)))) return NULL;