summaryrefslogtreecommitdiffstats
path: root/macosx/tclMacOSXNotify.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2008-10-26 18:50:06 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2008-10-26 18:50:06 (GMT)
commite2a86ffb4d1c3d4ec5f674f22f705f13567939d8 (patch)
tree201f73f6c66bc300b91aba83104d61fb9b406bed /macosx/tclMacOSXNotify.c
parentd84707cdee0b26bca07af2756cb4e234e11a6195 (diff)
downloadtcl-e2a86ffb4d1c3d4ec5f674f22f705f13567939d8.zip
tcl-e2a86ffb4d1c3d4ec5f674f22f705f13567939d8.tar.gz
tcl-e2a86ffb4d1c3d4ec5f674f22f705f13567939d8.tar.bz2
Style improvements - invoking callbacks without visual junk.
Diffstat (limited to 'macosx/tclMacOSXNotify.c')
-rw-r--r--macosx/tclMacOSXNotify.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tclMacOSXNotify.c b/macosx/tclMacOSXNotify.c
index 125307e..b67ef3e 100644
--- a/macosx/tclMacOSXNotify.c
+++ b/macosx/tclMacOSXNotify.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.20 2008/07/24 21:54:43 nijtmans Exp $
+ * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.21 2008/10/26 18:50:07 dkf Exp $
*/
#include "tclInt.h"
@@ -876,7 +876,7 @@ FileHandlerEventProc(
mask = filePtr->readyMask & filePtr->mask;
filePtr->readyMask = 0;
if (mask != 0) {
- (*filePtr->proc)(filePtr->clientData, mask);
+ filePtr->proc(filePtr->clientData, mask);
}
break;
}
@@ -933,7 +933,7 @@ Tcl_WaitForEvent(
myTime.usec = timePtr->usec;
if (myTime.sec != 0 || myTime.usec != 0) {
- (*tclScaleTimeProcPtr) (&myTime, tclTimeClientData);
+ tclScaleTimeProcPtr(&myTime, tclTimeClientData);
}
myTimePtr = &myTime;