From: Neal Norwitz Date: Thu, 20 Apr 2006 06:44:42 +0000 (+0000) Subject: Whitespace, fix indentation X-Git-Tag: v2.5a2~105 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d21b1ed54a9c6133ca4b65779647b6d6dde2960;p=python Whitespace, fix indentation --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 4c462a039c..4b5842e862 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -6816,7 +6816,6 @@ posix_confstr(PyObject *self, PyObject *args) errno = 0; len = confstr(name, buffer, sizeof(buffer)); - if (len == 0) { if (errno) { posix_error(); @@ -6827,7 +6826,7 @@ posix_confstr(PyObject *self, PyObject *args) } } else { - if ((unsigned int)len >= sizeof(buffer)) { + if ((unsigned int)len >= sizeof(buffer)) { result = PyString_FromStringAndSize(NULL, len+1); if (result != NULL) confstr(name, PyString_AS_STRING(result), len+1);