diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2006-09-26 00:05:02 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2006-09-26 00:05:02 (GMT) |
commit | d421cc6148b8573ae4284cb05be84eb936f44623 (patch) | |
tree | c0ac86f04e183856c29bf53794757d77eeea7dbc /win/tclWinDde.c | |
parent | 9ca74c27f3f89bb08b044b9bea127f0aa23fa9d5 (diff) | |
download | tcl-d421cc6148b8573ae4284cb05be84eb936f44623.zip tcl-d421cc6148b8573ae4284cb05be84eb936f44623.tar.gz tcl-d421cc6148b8573ae4284cb05be84eb936f44623.tar.bz2 |
More fixing which struct stat to refer to. Some casts from time_t to int required.
Tcl_Time structure members are longs. Support for varying compiler options
and build to platform-specific subdirs.
Diffstat (limited to 'win/tclWinDde.c')
-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 5c38115..bcd086e 100644 --- a/win/tclWinDde.c +++ b/win/tclWinDde.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: tclWinDde.c,v 1.30 2006/04/05 16:32:44 dgp Exp $ + * RCS: @(#) $Id: tclWinDde.c,v 1.31 2006/09/26 00:05:03 patthoyts Exp $ */ #include "tclInt.h" @@ -378,7 +378,7 @@ DdeSetServerName( } } Tcl_DStringSetLength(&dString, - offset + strlen(Tcl_DStringValue(&dString)+offset)); + offset + (int)strlen(Tcl_DStringValue(&dString)+offset)); } /* |