diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-17 07:59:14 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-17 07:59:14 (GMT) |
commit | d508d00919dccbc9dd5d3c86508f2db7a7c753a7 (patch) | |
tree | 141cdfbf0908146bab12636e5b270e59ea06b3a5 /PC | |
parent | abf275af5804c5f76fbe10c5cb1dd3d2e4b04c5b (diff) | |
parent | 6d57fe1c23430d0d51de243a177670b76c37dab5 (diff) | |
download | cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.zip cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.gz cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.bz2 |
Issue #28139: Merge indentation fixes from 3.5 into 3.6
Diffstat (limited to 'PC')
-rw-r--r-- | PC/bdist_wininst/install.c | 18 |
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); |