From da3a5ad98a03565525b496642a82c570af64f0b2 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 11 Dec 2003 15:35:44 +0000 Subject: fixed bad formal parameter type in get_static(); patch Andy Polyakov (This used to be commit 67d893701f09f29e8af56cd98f04131658b39713) --- 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