From 2fdf4de2f6d5176f792bcbdc140720b81204f6a5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 29 Sep 2014 21:41:55 +0530 Subject: [PATCH] ... --- setup/installer/windows/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/installer/windows/util.c b/setup/installer/windows/util.c index 310938d3e0..4be1081e71 100644 --- a/setup/installer/windows/util.c +++ b/setup/installer/windows/util.c @@ -319,7 +319,7 @@ void initialize_interpreter(wchar_t *outr, wchar_t *errr, flag = (int*)GetProcAddress(dll, "Py_NoUserSiteDirectory"); if (!flag) ExitProcess(_show_error(L"Failed to get user_site flag", L"", 1)); *flag = 1; - flag = (int*)GetProcAddress(dll, "Py_HashRandomizationFlag "); + flag = (int*)GetProcAddress(dll, "Py_HashRandomizationFlag"); if (!flag) ExitProcess(_show_error(L"Failed to get hash randomization flag", L"", 1)); *flag = 1; flag = (int*)GetProcAddress(dll, "Py_VerboseFlag");