[Python-checkins] python/dist/src/PC/bdist_wininst install.c, 1.2, 1.3

theller at users.sourceforge.net theller at users.sourceforge.net
Thu Apr 15 14:19:12 EDT 2004


Update of /cvsroot/python/python/dist/src/PC/bdist_wininst
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16451

Modified Files:
	install.c 
Log Message:
Minor reformatting.


Index: install.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/bdist_wininst/install.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** install.c	20 Feb 2004 14:43:21 -0000	1.2
--- install.c	15 Apr 2004 18:19:02 -0000	1.3
***************
*** 1470,1481 ****
  						result = sscanf(pbuf, "Python Version %d.%d",
  								 &py_major, &py_minor);
! 						if (result == 2)
  #ifdef _DEBUG
  							wsprintf(pythondll, "python%d%d_d.dll",
! 								  py_major, py_minor);
  #else
! 						wsprintf(pythondll, "python%d%d.dll",
! 							  py_major, py_minor);
  #endif
  						free(pbuf);
  					} else
--- 1470,1482 ----
  						result = sscanf(pbuf, "Python Version %d.%d",
  								 &py_major, &py_minor);
! 						if (result == 2) {
  #ifdef _DEBUG
  							wsprintf(pythondll, "python%d%d_d.dll",
! 								 py_major, py_minor);
  #else
! 							wsprintf(pythondll, "python%d%d.dll",
! 								 py_major, py_minor);
  #endif
+ 						}
  						free(pbuf);
  					} else




More information about the Python-checkins mailing list