diff options
author | Thomas Heller <theller@ctypes.org> | 2004-12-22 16:40:30 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2004-12-22 16:40:30 (GMT) |
commit | 21b112869ede04dd2b3ff64a25f790b965ee64b0 (patch) | |
tree | c8a8e8967901624e712d6bce9b2464e9f5f2dd8e /PC | |
parent | 625ba9511cfcb29fe0006c6a243329a3f3b34479 (diff) | |
download | cpython-21b112869ede04dd2b3ff64a25f790b965ee64b0.zip cpython-21b112869ede04dd2b3ff64a25f790b965ee64b0.tar.gz cpython-21b112869ede04dd2b3ff64a25f790b965ee64b0.tar.bz2 |
Fix a typo from the last checkin.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/bdist_wininst/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c index 3d0eacd..f927019 100644 --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -612,7 +612,7 @@ static HINSTANCE LoadPythonDll(char *fname) { char fullpath[_MAX_PATH]; LONG size = sizeof(fullpath); - char subkeyname[80]; + char subkey_name[80]; HINSTANCE h = LoadLibrary(fname); if (h) return h; |