aboutsummaryrefslogtreecommitdiffstats
path: root/http.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 06:57:02 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 06:57:02 +0000
commite08034951311f5ee2d4c8ea2307ec04fad5c2822 (patch)
tree2b874b44bfcb4d472226a359006c73b22762601a /http.c
parentdab89bb66aeb2a4c9b3414dac7c78972a4467788 (diff)
fix a pointer signedness issue
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37287 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'http.c')
-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;