diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-20 13:49:02 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-20 13:49:02 (GMT) |
| commit | 7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b (patch) | |
| tree | 41badbabc8140d865699b5f639cd4c53edbe3851 /unix/tclEpollNotfy.c | |
| parent | 3ba2524ad4dcbada77fd5079cb69007cdea2a5e9 (diff) | |
| parent | 6d093a49bdc100e9422cbde3980c3136f5989922 (diff) | |
| download | tcl-7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b.zip tcl-7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b.tar.gz tcl-7d7ef84838ff5db5de2069e8f5aa8fa1ae79ce6b.tar.bz2 | |
Few more spacing/formatting tweaks
Diffstat (limited to 'unix/tclEpollNotfy.c')
| -rw-r--r-- | unix/tclEpollNotfy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclEpollNotfy.c b/unix/tclEpollNotfy.c index 659e659..2a1733a 100644 --- a/unix/tclEpollNotfy.c +++ b/unix/tclEpollNotfy.c @@ -731,7 +731,7 @@ TclpWaitForEvent( i = read(tsdPtr->triggerEventFd, &eventFdVal, sizeof(eventFdVal)); if ((i != sizeof(eventFdVal)) && (errno != EAGAIN)) { Tcl_Panic("%s: read from %p->triggerEventFd: %s", - "Tcl_WaitForEvent", (void *) tsdPtr, strerror(errno)); + "Tcl_WaitForEvent", tsdPtr, strerror(errno)); } continue; } @@ -743,7 +743,7 @@ TclpWaitForEvent( sizeof(triggerPipeVal)); if ((i != sizeof(triggerPipeVal)) && (errno != EAGAIN)) { Tcl_Panic("%s: read from %p->triggerPipe[0]: %s", - "Tcl_WaitForEvent", (void *) tsdPtr, strerror(errno)); + "Tcl_WaitForEvent", tsdPtr, strerror(errno)); } continue; } |
