[Python-checkins] r45575 - python/trunk/Modules/posixmodule.c

neal.norwitz python-checkins at python.org
Thu Apr 20 08:44:42 CEST 2006


Author: neal.norwitz
Date: Thu Apr 20 08:44:42 2006
New Revision: 45575

Modified:
   python/trunk/Modules/posixmodule.c
Log:
Whitespace, fix indentation

Modified: python/trunk/Modules/posixmodule.c
==============================================================================
--- python/trunk/Modules/posixmodule.c	(original)
+++ python/trunk/Modules/posixmodule.c	Thu Apr 20 08:44:42 2006
@@ -6816,7 +6816,6 @@
 
         errno = 0;
 	len = confstr(name, buffer, sizeof(buffer));
-
 	if (len == 0) {
 	    if (errno) {
 		posix_error();
@@ -6827,7 +6826,7 @@
 	    }
         }
         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);


More information about the Python-checkins mailing list