summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-12-28 09:53:36 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-12-28 09:53:36 (GMT)
commit476bb99185f813f3c90f0ef2156cebf0f759c27e (patch)
tree39d570da299affa44df733658e4da3d80fcba67d
parent4230837501b73be694a6e285dc87471b4cabdb65 (diff)
downloadtcl-476bb99185f813f3c90f0ef2156cebf0f759c27e.zip
tcl-476bb99185f813f3c90f0ef2156cebf0f759c27e.tar.gz
tcl-476bb99185f813f3c90f0ef2156cebf0f759c27e.tar.bz2
Minor formatting issues
-rw-r--r--generic/tclTimer.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/generic/tclTimer.c b/generic/tclTimer.c
index 4f40490..d65ca54 100644
--- a/generic/tclTimer.c
+++ b/generic/tclTimer.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: tclTimer.c,v 1.40 2009/09/07 07:28:38 das Exp $
+ * RCS: @(#) $Id: tclTimer.c,v 1.41 2009/12/28 09:53:36 dkf Exp $
*/
#include "tclInt.h"
@@ -897,8 +897,7 @@ Tcl_AfterObjCmd(
tempCommand = Tcl_GetStringFromObj(afterPtr->commandPtr,
&tempLength);
if ((length == tempLength)
- && (memcmp((void*) command, (void*) tempCommand,
- (unsigned) length) == 0)) {
+ && !memcmp(command, tempCommand, (unsigned) length)) {
break;
}
}
@@ -1022,14 +1021,14 @@ AfterDelay(
return TCL_ERROR;
}
if (iPtr->limit.timeEvent != NULL
- && TCL_TIME_BEFORE(iPtr->limit.time, now)) {
+ && TCL_TIME_BEFORE(iPtr->limit.time, now)) {
iPtr->limit.granularityTicker = 0;
if (Tcl_LimitCheck(interp) != TCL_OK) {
return TCL_ERROR;
}
}
if (iPtr->limit.timeEvent == NULL
- || TCL_TIME_BEFORE(endTime, iPtr->limit.time)) {
+ || TCL_TIME_BEFORE(endTime, iPtr->limit.time)) {
diff = TCL_TIME_DIFF_MS(endTime, now);
#ifndef TCL_WIDE_INT_IS_LONG
if (diff > LONG_MAX) {
@@ -1040,7 +1039,7 @@ AfterDelay(
diff = TCL_TIME_MAXIMUM_SLICE;
}
if (diff > 0) {
- Tcl_Sleep((long)diff);
+ Tcl_Sleep((long) diff);
}
} else {
diff = TCL_TIME_DIFF_MS(iPtr->limit.time, now);
@@ -1053,7 +1052,7 @@ AfterDelay(
diff = TCL_TIME_MAXIMUM_SLICE;
}
if (diff > 0) {
- Tcl_Sleep((long)diff);
+ Tcl_Sleep((long) diff);
}
if (Tcl_AsyncReady()) {
if (Tcl_AsyncInvoke(interp, TCL_OK) != TCL_OK) {