Commit ec55cd69 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

secur32: Make alloc_lsa_connection() static.

parent a66af35a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment