Skip to content
Snippets Groups Projects
Commit ec55cd69 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

secur32: Make alloc_lsa_connection() static.

parent a66af35a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment