diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-11-30 18:40:27 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-11-30 18:40:27 (GMT) |
commit | f1608d9d16479048838c99d496b9f2812de574f2 (patch) | |
tree | f1498de7acfd542f5bb2413db98d367686453f38 /win | |
parent | 144b1b16e962181661e12d2c592f37b17e22278b (diff) | |
download | tcl-f1608d9d16479048838c99d496b9f2812de574f2.zip tcl-f1608d9d16479048838c99d496b9f2812de574f2.tar.gz tcl-f1608d9d16479048838c99d496b9f2812de574f2.tar.bz2 |
corrected a typo that caused a compilation failure on VC++
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinDde.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinDde.c b/win/tclWinDde.c index 88c889e..023a037 100644 --- a/win/tclWinDde.c +++ b/win/tclWinDde.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinDde.c,v 1.25 2004/11/26 20:02:28 andreas_kupries Exp $ + * RCS: @(#) $Id: tclWinDde.c,v 1.26 2004/11/30 18:40:33 kennykb Exp $ */ #include "tclInt.h" @@ -1327,7 +1327,7 @@ Tcl_DdeObjCmd(clientData, interp, objc, objv) } } - switch ((enum DdeSubcommand) index) { + switch ((enum DdeSubcommands) index) { case DDE_SERVERNAME: serviceName = DdeSetServerName(interp, serviceName, exact, handlerPtr); if (serviceName != NULL) { |