summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-07-07 06:57:02 +0000
committerRussell Bryant <russell@russellbryant.com>2006-07-07 06:57:02 +0000
commitd6f9808e7f2e8c1c390c6b3a39c6ef3321d4d6dc (patch)
tree2b874b44bfcb4d472226a359006c73b22762601a
parent6e28de8050664387cb7ca410694265417df8b60d (diff)
fix a pointer signedness issue
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37287 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.c b/http.c
index bdbd9861a..a6bc5b01c 100644
--- a/http.c
+++ b/http.c
@@ -461,7 +461,7 @@ static void *http_root(void *data)
{
int fd;
struct sockaddr_in sin;
- int sinlen;
+ socklen_t sinlen;
struct ast_http_server_instance *ser;
pthread_t launched;
pthread_attr_t attr;