From e5065290e79795c655d46475ae7c92ef225ab90e Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 19 Jul 2001 21:16:41 +0000 Subject: Clean up some warnings from the SGI compiler. This is part of SF patch #434992. --- Modules/socketmodule.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 72b141c..1841024 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -573,7 +573,7 @@ setipaddr(char* name, struct sockaddr_in * addr_ret) static PyObject * makeipaddr(struct sockaddr_in *addr) { - long x = ntohl(addr->sin_addr.s_addr); + unsigned long x = ntohl(addr->sin_addr.s_addr); char buf[100]; sprintf(buf, "%d.%d.%d.%d", (int) (x>>24) & 0xff, (int) (x>>16) & 0xff, @@ -2086,13 +2086,13 @@ PySocket_inet_aton(PyObject *self, PyObject *args) /* Have to use inet_addr() instead */ char *ip_addr; - long packed_addr; + unsigned long packed_addr; if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr)) { return NULL; } #ifdef USE_GUSI1 - packed_addr = (long)inet_addr(ip_addr).s_addr; + packed_addr = inet_addr(ip_addr).s_addr; #else packed_addr = inet_addr(ip_addr); #endif -- cgit v0.12