mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 11:04:51 -04:00
23 lines
473 B
Plaintext
23 lines
473 B
Plaintext
$NetBSD: patch-al,v 1.1 2002/08/16 16:25:14 agc Exp $
|
|
|
|
--- iohandler.cc 2002/08/16 16:12:48 1.1
|
|
+++ iohandler.cc 2002/08/16 16:15:23
|
|
@@ -132,7 +132,7 @@
|
|
|
|
}
|
|
#else
|
|
- Tk_CreateFileHandler((ClientData)fd, mask, callback, (ClientData)this);
|
|
+ Tk_CreateFileHandler(fd, mask, callback, (ClientData)this);
|
|
#endif
|
|
}
|
|
|
|
@@ -151,7 +151,7 @@
|
|
}
|
|
#else
|
|
if (fd_ >= 0) {
|
|
- Tk_DeleteFileHandler((ClientData)fd_);
|
|
+ Tk_DeleteFileHandler(fd_);
|
|
fd_ = -1;
|
|
}
|
|
#endif
|