suppress some compiler warnings on mac

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@14988 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2006-03-26 06:59:10 +00:00
parent 9164eac21a
commit eaeb8abc59
1 changed files with 1 additions and 1 deletions

2
http.c
View File

@ -60,7 +60,7 @@ static struct sockaddr_in oldsin;
static char *httpstatus_callback(struct sockaddr_in *req, const char *uri, struct ast_variable *vars, int *status, char **title, int *contentlength)
{
char result[4096];
int reslen = sizeof(result);
size_t reslen = sizeof(result);
char *c=result;
struct ast_variable *v;
char iabuf[INET_ADDRSTRLEN];