summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:32 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:32 (GMT)
commit369052bb056ee4a4075241d818a3cb7c83c47e2d (patch)
treebd19d97ca78bbcb326989d3a753218b6745e3e4e /PC
parentf7cc6035076d94d27ae624316d3a42e1a769ce65 (diff)
parentd508d00919dccbc9dd5d3c86508f2db7a7c753a7 (diff)
downloadcpython-369052bb056ee4a4075241d818a3cb7c83c47e2d.zip
cpython-369052bb056ee4a4075241d818a3cb7c83c47e2d.tar.gz
cpython-369052bb056ee4a4075241d818a3cb7c83c47e2d.tar.bz2
Issue #28139: Merge indentation fixes from 3.6
Diffstat (limited to 'PC')
-rw-r--r--PC/bdist_wininst/install.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c
index e01dba6..fd977f5 100644
--- a/PC/bdist_wininst/install.c
+++ b/PC/bdist_wininst/install.c
@@ -1661,16 +1661,16 @@ SelectPythonDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
PropSheet_SetWizButtons(GetParent(hwnd),
PSWIZB_BACK | PSWIZB_NEXT);
/* Get the python directory */
- ivi = (InstalledVersionInfo *)
+ ivi = (InstalledVersionInfo *)
SendDlgItemMessage(hwnd,
- IDC_VERSIONS_LIST,
- LB_GETITEMDATA,
- id,
- 0);
- hkey_root = ivi->hkey;
- strcpy(python_dir, ivi->prefix);
- SetDlgItemText(hwnd, IDC_PATH, python_dir);
- /* retrieve the python version and pythondll to use */
+ IDC_VERSIONS_LIST,
+ LB_GETITEMDATA,
+ id,
+ 0);
+ hkey_root = ivi->hkey;
+ strcpy(python_dir, ivi->prefix);
+ SetDlgItemText(hwnd, IDC_PATH, python_dir);
+ /* retrieve the python version and pythondll to use */
result = SendDlgItemMessage(hwnd, IDC_VERSIONS_LIST,
LB_GETTEXTLEN, (WPARAM)id, 0);
pbuf = (char *)malloc(result + 1);