summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-31 09:19:21 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-31 09:19:21 (GMT)
commit85d70230296a50fa8805dca4b6a7281746759c7a (patch)
tree59e94c5c206dc93a5e6ba9c3fd901a94e9bf52fd /win
parentcef09a18ae9b1a55404db45ade312b06880c0f65 (diff)
parent91189c426903448dfa31ba4983c5d3035cb351a5 (diff)
downloadtcl-85d70230296a50fa8805dca4b6a7281746759c7a.zip
tcl-85d70230296a50fa8805dca4b6a7281746759c7a.tar.gz
tcl-85d70230296a50fa8805dca4b6a7281746759c7a.tar.bz2
merge core-8-6-branch (except: the "timerate" command and the clock performance-tests are kept)
Diffstat (limited to 'win')
-rw-r--r--win/tclWinTime.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c
index d123985..bbcfe96 100644
--- a/win/tclWinTime.c
+++ b/win/tclWinTime.c
@@ -256,7 +256,7 @@ TclpGetWideClicks(void)
/*
* The frequency of the performance counter is fixed at system boot and
- * is consistent across all processors. Therefore, the frequency need
+ * is consistent across all processors. Therefore, the frequency need
* only be queried upon application initialization.
*/
if (QueryPerformanceFrequency(&perfCounterFreq)) {
@@ -267,7 +267,7 @@ TclpGetWideClicks(void)
wideClick.perfCounter = 0;
wideClick.microsecsScale = 1;
}
-
+
wideClick.initialized = 1;
}
if (wideClick.perfCounter) {
@@ -288,7 +288,7 @@ TclpGetWideClicks(void)
*
* TclpWideClickInMicrosec --
*
- * This procedure return scale to convert wide click values from the
+ * This procedure return scale to convert wide click values from the
* TclpGetWideClicks native resolution to microsecond resolution
* and back.
*
@@ -327,7 +327,7 @@ TclpWideClickInMicrosec(void)
*----------------------------------------------------------------------
*/
-Tcl_WideInt
+Tcl_WideInt
TclpGetMicroseconds(void)
{
Tcl_WideInt usecSincePosixEpoch;