From 0f3e1f011268fdd5fa885f5e1f9f5ee15a747f1d Mon Sep 17 00:00:00 2001 From: Mark Hammond Date: Mon, 22 Jul 2002 13:28:21 +0000 Subject: Remove a strange single quote that didn't seem to upset the compilers! --- PC/getpathp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit v1.2.1