[Python-checkins] python/dist/src/Python dynload_win.c,2.11,2.12

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon, 26 Aug 2002 14:20:32 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv26696

Modified Files:
	dynload_win.c 
Log Message:
Fix a couple of whitespace consistency nits.


Index: dynload_win.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_win.c,v
retrieving revision 2.11
retrieving revision 2.12
diff -C2 -d -r2.11 -r2.12
*** dynload_win.c	30 Jun 2002 15:26:10 -0000	2.11
--- dynload_win.c	26 Aug 2002 21:20:30 -0000	2.12
***************
*** 218,227 ****
  			}
  			PyErr_SetString(PyExc_ImportError, errBuf);
! 		return NULL;
  		} else {
  			char buffer[256];
  
  			PyOS_snprintf(buffer, sizeof(buffer), "python%d%d.dll",
! 				PY_MAJOR_VERSION,PY_MINOR_VERSION);
  			import_python = GetPythonImport(hDLL);
  
--- 218,227 ----
  			}
  			PyErr_SetString(PyExc_ImportError, errBuf);
! 			return NULL;
  		} else {
  			char buffer[256];
  
  			PyOS_snprintf(buffer, sizeof(buffer), "python%d%d.dll",
! 				      PY_MAJOR_VERSION,PY_MINOR_VERSION);
  			import_python = GetPythonImport(hDLL);