summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2010-11-08 21:26:43 (GMT)
committerandreas_kupries <akupries@shaw.ca>2010-11-08 21:26:43 (GMT)
commit16c3a9beaa176b53e6daaaf5e0a04f9ed78366ff (patch)
treec898c8b5727a24ec7b4f9d735fa667d20da1b3f7 /win
parent73774597a1b44438076a6f72df9c5040b54e3a04 (diff)
downloadtcl-16c3a9beaa176b53e6daaaf5e0a04f9ed78366ff.zip
tcl-16c3a9beaa176b53e6daaaf5e0a04f9ed78366ff.tar.gz
tcl-16c3a9beaa176b53e6daaaf5e0a04f9ed78366ff.tar.bz2
Fix missing comma in last commit
Diffstat (limited to 'win')
-rw-r--r--win/tclWin32Dll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c
index 4ba65b7..3fbda0a 100644
--- a/win/tclWin32Dll.c
+++ b/win/tclWin32Dll.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWin32Dll.c,v 1.24.2.11 2010/11/03 22:10:48 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclWin32Dll.c,v 1.24.2.12 2010/11/08 21:26:43 andreas_kupries Exp $
*/
#include "tclWinInt.h"
@@ -98,7 +98,7 @@ static TclWinProcs asciiProcs = {
(DWORD (WINAPI *)(DWORD, WCHAR *)) GetTempPathA,
(BOOL (WINAPI *)(CONST TCHAR *, WCHAR *, DWORD, LPDWORD, LPDWORD, LPDWORD,
WCHAR *, DWORD)) GetVolumeInformationA,
- (HINSTANCE (WINAPI *)(const TCHAR *, HANDLE, DWORD)) LoadLibraryExA
+ (HINSTANCE (WINAPI *)(const TCHAR *, HANDLE, DWORD)) LoadLibraryExA,
(TCHAR (WINAPI *)(WCHAR *, CONST TCHAR *)) lstrcpyA,
(BOOL (WINAPI *)(CONST TCHAR *, CONST TCHAR *)) MoveFileA,
(BOOL (WINAPI *)(CONST TCHAR *)) RemoveDirectoryA,