diff options
author | Thomas Heller <theller@ctypes.org> | 2003-08-18 17:53:33 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2003-08-18 17:53:33 (GMT) |
commit | 6019f9a65d5a5c69f31bf69ea30459d572f2634a (patch) | |
tree | 2f14384f2bff35e26614af46f0da18f075881062 | |
parent | 3432118022284a6c4df58a07696fa8259bc0a1d9 (diff) | |
download | cpython-6019f9a65d5a5c69f31bf69ea30459d572f2634a.zip cpython-6019f9a65d5a5c69f31bf69ea30459d572f2634a.tar.gz cpython-6019f9a65d5a5c69f31bf69ea30459d572f2634a.tar.bz2 |
Remove a stray single quote.
Will backport to release23-maint.
-rw-r--r-- | PC/getpathp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/getpathp.c b/PC/getpathp.c index d61d3ea..7c87da8 100644 --- a/PC/getpathp.c +++ b/PC/getpathp.c @@ -366,7 +366,7 @@ get_progpath(void) dllpath, MAXPATHLEN+1, NULL, NULL); } - wprogpath[MAXPATHLEN]=_T('\0')'; + wprogpath[MAXPATHLEN]=_T('\0'); if (GetModuleFileName(NULL, wprogpath, MAXPATHLEN)) { WideCharToMultiByte(CP_ACP, 0, wprogpath, -1, |