From 96142191407885f8effd18535c92a0f2fec1cefd Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Thu, 15 Apr 2004 18:19:02 +0000 Subject: Minor reformatting. --- PC/bdist_wininst/install.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c index 0ea1fcdbaf..64e213ec58 100644 --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -1469,14 +1469,15 @@ SelectPythonDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) (LPARAM)pbuf); result = sscanf(pbuf, "Python Version %d.%d", &py_major, &py_minor); - if (result == 2) + if (result == 2) { #ifdef _DEBUG wsprintf(pythondll, "python%d%d_d.dll", - py_major, py_minor); + py_major, py_minor); #else - wsprintf(pythondll, "python%d%d.dll", - py_major, py_minor); + wsprintf(pythondll, "python%d%d.dll", + py_major, py_minor); #endif + } free(pbuf); } else strcpy(pythondll, ""); -- cgit v1.2.1