From 2719275ebfdfc0dfc460c9d29c51e8968039602e Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 11 Dec 2003 15:35:11 +0000 Subject: fixed bad formal parameter type in get_static(); patch Andy Polyakov (This used to be commit 9c70e4b44e0dda8f2af4172b928437bd9d3e8b7c) --- source3/nsswitch/wins.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/nsswitch/wins.c') diff --git a/source3/nsswitch/wins.c b/source3/nsswitch/wins.c index 0fc4e46cdb..779d1b2c6c 100644 --- a/source3/nsswitch/wins.c +++ b/source3/nsswitch/wins.c @@ -265,7 +265,7 @@ int lookup(nsd_file_t *rq) are the pointers passed in by the C library to the _nss_*_* functions. */ -static char *get_static(char **buffer, int *buflen, int len) +static char *get_static(char **buffer, size_t *buflen, int len) { char *result; -- cgit