diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-06 23:33:46 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-06 23:33:46 (GMT) |
| commit | 1e4a3bcbd2a5f013c2624670af9338d49e0ea8c1 (patch) | |
| tree | 3760c724e2815dde7d8d1abc5896f2f292ce2906 /generic/tclStubInit.c | |
| parent | 30d4f80c01fec851bb64891d99abbdc83eda86ec (diff) | |
| download | tcl-1e4a3bcbd2a5f013c2624670af9338d49e0ea8c1.zip tcl-1e4a3bcbd2a5f013c2624670af9338d49e0ea8c1.tar.gz tcl-1e4a3bcbd2a5f013c2624670af9338d49e0ea8c1.tar.bz2 | |
tclpGetPid signature change (stub entry only, not for macro),
for win64 compatibility with future cygwin64
correctly use win32 as default when cross-compiling under cygwin
Diffstat (limited to 'generic/tclStubInit.c')
| -rw-r--r-- | generic/tclStubInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 71c6ab4..7d24d69 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -133,10 +133,10 @@ TclWinNoBackslash(char *path) return path; } -static unsigned long +static int TclpGetPid(Tcl_Pid pid) { - return (unsigned long) (size_t) pid; + return (int) (size_t) pid; } static void |
