summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2002-07-22 13:28:21 +0000
committerMark Hammond <mhammond@skippinet.com.au>2002-07-22 13:28:21 +0000
commit0f3e1f011268fdd5fa885f5e1f9f5ee15a747f1d (patch)
treeef32516ac87cef16fe04f575cda13158ef3327fb
parent2c714094a03ece530a624dd9e02dbaffb445f647 (diff)
downloadcpython-0f3e1f011268fdd5fa885f5e1f9f5ee15a747f1d.tar.gz
Remove a strange single quote that didn't seem to upset the compilers!
-rw-r--r--PC/getpathp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/getpathp.c b/PC/getpathp.c
index e2d4e7a81b..a38224a00c 100644
--- a/PC/getpathp.c
+++ b/PC/getpathp.c
@@ -356,7 +356,7 @@ get_progpath(void)
but makes no mention of the null terminator. Play it safe.
PLUS Windows itself defines MAX_PATH as the same, but anyway...
*/
- wprogpath[MAXPATHLEN]=_T('\0')';
+ wprogpath[MAXPATHLEN]=_T('\0');
if (GetModuleFileName(NULL, wprogpath, MAXPATHLEN)) {
WideCharToMultiByte(CP_ACP, 0,
wprogpath, -1,