summaryrefslogtreecommitdiffstats
path: root/generic/tclAsync.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2008-10-26 18:34:02 (GMT)
committerdkf <dkf@noemail.net>2008-10-26 18:34:02 (GMT)
commita7f4994a82b51ba52af159f6032fc29a50a3fe40 (patch)
treeb47f8826ac440515804f80e59f434ef1dff42fd1 /generic/tclAsync.c
parent136f9d15662bdc864c3a4af1bd0d704d135070a9 (diff)
downloadtcl-a7f4994a82b51ba52af159f6032fc29a50a3fe40.zip
tcl-a7f4994a82b51ba52af159f6032fc29a50a3fe40.tar.gz
tcl-a7f4994a82b51ba52af159f6032fc29a50a3fe40.tar.bz2
Style improvements - invoking callbacks without visual junk.
FossilOrigin-Name: a1a8afc25d47810e677f42869f79723f80f3d6a6
Diffstat (limited to 'generic/tclAsync.c')
-rw-r--r--generic/tclAsync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclAsync.c b/generic/tclAsync.c
index 1e5733e..175eaad 100644
--- a/generic/tclAsync.c
+++ b/generic/tclAsync.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclAsync.c,v 1.16 2008/05/03 19:31:07 das Exp $
+ * RCS: @(#) $Id: tclAsync.c,v 1.17 2008/10/26 18:34:03 dkf Exp $
*/
#include "tclInt.h"
@@ -237,7 +237,7 @@ Tcl_AsyncInvoke(
}
asyncPtr->ready = 0;
Tcl_MutexUnlock(&tsdPtr->asyncMutex);
- code = (*asyncPtr->proc)(asyncPtr->clientData, interp, code);
+ code = asyncPtr->proc(asyncPtr->clientData, interp, code);
Tcl_MutexLock(&tsdPtr->asyncMutex);
}
tsdPtr->asyncActive = 0;