[Python-checkins] python/dist/src/PC/bdist_wininst install.c, 1.11,
1.12
theller at users.sourceforge.net
theller at users.sourceforge.net
Wed Dec 1 20:43:05 CET 2004
Update of /cvsroot/python/python/dist/src/PC/bdist_wininst
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8814
Modified Files:
install.c
Log Message:
printf format code for integers is %d not %s.
Will backport.
Index: install.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/bdist_wininst/install.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- install.c 1 Dec 2004 18:18:08 -0000 1.11
+++ install.c 1 Dec 2004 19:43:02 -0000 1.12
@@ -617,7 +617,7 @@
if (h)
return h;
wsprintf(subkey_name,
- "SOFTWARE\\Python\\PythonCore\\%s.%s\\InstallPath",
+ "SOFTWARE\\Python\\PythonCore\\%d.%d\\InstallPath",
py_major, py_minor);
if (ERROR_SUCCESS != RegQueryValue(HKEY_CURRENT_USER, subkey_name,
fullpath, &size))
More information about the Python-checkins
mailing list