Francois Gouget : secur32: Make alloc_lsa_connection() static.
Module: wine Branch: master Commit: ec55cd694a6169bfaf295ff50652658acd9b3af8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=ec55cd694a6169bfaf295ff50... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Apr 30 04:31:35 2018 +0200 secur32: Make alloc_lsa_connection() static. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/secur32/lsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/secur32/lsa.c b/dlls/secur32/lsa.c index 5fe6f3a..694971d 100644 --- a/dlls/secur32/lsa.c +++ b/dlls/secur32/lsa.c @@ -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;
participants (1)
-
Alexandre Julliard