]> granicus.if.org Git - python/commitdiff
Whitespace, fix indentation
authorNeal Norwitz <nnorwitz@gmail.com>
Thu, 20 Apr 2006 06:44:42 +0000 (06:44 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Thu, 20 Apr 2006 06:44:42 +0000 (06:44 +0000)
Modules/posixmodule.c

index 4c462a039c30a2af9a6d933e4feecdf64d67cb9e..4b5842e8629bd3b1457ae5c1f0b8696ab9ddf0e4 100644 (file)
@@ -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);