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:
parent
a66af35ab9
commit
ec55cd694a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue