From 0b1ee00117b09f678215b2f9b7de525940726d8c Mon Sep 17 00:00:00 2001 From: hobbs Date: Fri, 21 Jan 2000 02:26:25 +0000 Subject: * unix/tclUnixNotfy.c (Tcl_InitNotifier): added cast for tsdPtr --- unix/tclUnixNotfy.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index d116f8a..f2c670b 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.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: tclUnixNotfy.c,v 1.6 1999/10/21 02:18:09 hobbs Exp $ + * RCS: @(#) $Id: tclUnixNotfy.c,v 1.7 2000/01/21 02:26:25 hobbs Exp $ */ #include "tclInt.h" @@ -207,7 +207,8 @@ Tcl_InitNotifier() Tcl_MutexLock(¬ifierMutex); if (notifierCount == 0) { - if (TclpThreadCreate(¬ifierThread, NotifierThreadProc, NULL) != TCL_OK) { + if (TclpThreadCreate(¬ifierThread, NotifierThreadProc, NULL) + != TCL_OK) { panic("Tcl_InitNotifier: unable to start notifier thread"); } } @@ -223,7 +224,7 @@ Tcl_InitNotifier() Tcl_MutexUnlock(¬ifierMutex); #endif - return tsdPtr; + return (ClientData) tsdPtr; } /* -- cgit v0.12