diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-10-01 13:19:13 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-10-01 13:19:13 +0000 |
commit | 539e1e66ff6f99c987c8e03872ddaea5260db8f7 (patch) | |
tree | bca582e352640f318b35228d0c250ddde3bd0e0b /contrib/tcl/unix/tclUnixNotfy.c | |
parent | 3d33409926539d866dcea9fc5cb14113b312adf0 (diff) |
Upgrade to 8.0 release.
Notes
Notes:
svn path=/vendor/tcl/dist/; revision=30037
Diffstat (limited to 'contrib/tcl/unix/tclUnixNotfy.c')
-rw-r--r-- | contrib/tcl/unix/tclUnixNotfy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/tcl/unix/tclUnixNotfy.c b/contrib/tcl/unix/tclUnixNotfy.c index 74c0ffc90d33..857454c65da2 100644 --- a/contrib/tcl/unix/tclUnixNotfy.c +++ b/contrib/tcl/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. * - * SCCS: @(#) tclUnixNotfy.c 1.41 97/06/02 16:45:24 + * SCCS: @(#) tclUnixNotfy.c 1.42 97/07/02 20:55:44 */ #include "tclInt.h" @@ -208,7 +208,7 @@ Tcl_CreateFileHandler(fd, mask, proc, clientData) } } if (filePtr == NULL) { - filePtr = (FileHandler*) ckalloc(sizeof(FileHandler)); + filePtr = (FileHandler*) ckalloc(sizeof(FileHandler)); /* MLK */ filePtr->fd = fd; filePtr->readyMask = 0; filePtr->nextPtr = notifier.firstFileHandlerPtr; |