summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordas <das>2007-11-10 20:49:42 (GMT)
committerdas <das>2007-11-10 20:49:42 (GMT)
commitdb8435f4f6d903ab177a991ed393676493928b77 (patch)
treef9933518784a53a7899c20a3b10740469185a122 /generic
parente607cd1ab59a2a4185647ec4f6831ca1d9781535 (diff)
downloadtcl-db8435f4f6d903ab177a991ed393676493928b77.zip
tcl-db8435f4f6d903ab177a991ed393676493928b77.tar.gz
tcl-db8435f4f6d903ab177a991ed393676493928b77.tar.bz2
* unix/tclUnixTime.c (TclpWideClicksToNanoseconds): fix issues with
* generic/tclInt.h: int64_t overflow.
Diffstat (limited to 'generic')
-rw-r--r--generic/tclInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 6a72767..48e20b2 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.340 2007/11/10 19:01:35 msofer Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.341 2007/11/10 20:49:43 das Exp $
*/
#ifndef _TCLINT
@@ -2602,7 +2602,7 @@ MODULE_SCOPE void TclpFinalizeThreadDataThread(void);
MODULE_SCOPE void TclFinalizeThreadStorage(void);
#ifdef TCL_WIDE_CLICKS
MODULE_SCOPE Tcl_WideInt TclpGetWideClicks(void);
-MODULE_SCOPE Tcl_WideInt TclpWideClicksToNanoseconds(Tcl_WideInt clicks);
+MODULE_SCOPE double TclpWideClicksToNanoseconds(Tcl_WideInt clicks);
#endif
MODULE_SCOPE Tcl_Obj * TclDisassembleByteCodeObj(Tcl_Obj *objPtr);