diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-26 12:45:04 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-26 12:45:04 (GMT) |
commit | c2a4f7e6129491089c0fa4d0202ed91617d29591 (patch) | |
tree | 38d0791f589c2ab97e01e287a9a2cdc9dd091461 /unix/tclUnixNotfy.c | |
parent | fa1e0944fbc80713ec2e806311d2aa6bdbbcbffb (diff) | |
download | tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.zip tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.tar.gz tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.tar.bz2 |
Style improvements - invoking callbacks without visual junk.
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r-- | unix/tclUnixNotfy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index e285f03..eae0ee9 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixNotfy.c,v 1.36 2008/07/24 21:54:42 nijtmans Exp $ + * RCS: @(#) $Id: tclUnixNotfy.c,v 1.37 2008/10/26 12:45:04 dkf Exp $ */ #include "tclInt.h" @@ -642,7 +642,7 @@ FileHandlerEventProc( mask = filePtr->readyMask & filePtr->mask; filePtr->readyMask = 0; if (mask != 0) { - (*filePtr->proc)(filePtr->clientData, mask); + filePtr->proc(filePtr->clientData, mask); } break; } @@ -710,7 +710,7 @@ Tcl_WaitForEvent( myTime.usec = timePtr->usec; if (myTime.sec != 0 || myTime.usec != 0) { - (*tclScaleTimeProcPtr) (&myTime, tclTimeClientData); + tclScaleTimeProcPtr(&myTime, tclTimeClientData); } #ifdef TCL_THREADS |