From e6cc5b68bfc20c3cc2bf93bb82f6ac6ddab585c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 16 Feb 2002 23:13:54 +0000 Subject: Remove extraneous variable 'total', as reported by James Rucker. --- Modules/socketmodule.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 9648ba0..a8560d6 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -1497,7 +1497,7 @@ static PyObject * PySocketSock_sendall(PySocketSockObject *s, PyObject *args) { char *buf; - int len, n, flags = 0, total = 0; + int len, n, flags = 0; if (!PyArg_ParseTuple(args, "s#|i:sendall", &buf, &len, &flags)) return NULL; Py_BEGIN_ALLOW_THREADS @@ -1505,7 +1505,6 @@ PySocketSock_sendall(PySocketSockObject *s, PyObject *args) n = send(s->sock_fd, buf, len, flags); if (n < 0) break; - total += n; buf += n; len -= n; } while (len > 0); -- cgit v0.12