Francois Gouget : secur32: Make alloc_lsa_connection() static.

Alexandre Julliard julliard at winehq.org
Mon Apr 30 15:12:47 CDT 2018


Module: wine
Branch: master
Commit: ec55cd694a6169bfaf295ff50652658acd9b3af8
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ec55cd694a6169bfaf295ff50652658acd9b3af8

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Apr 30 04:31:35 2018 +0200

secur32: Make alloc_lsa_connection() static.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at 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;




More information about the wine-cvs mailing list