summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fd.c b/fd.c
index c026b0f..b6cea42 100644
--- a/fd.c
+++ b/fd.c
@@ -480,8 +480,8 @@ MainLoop(void)
if (FD_ISSET(fd, &rfds)) {
if (FDD[fd].InputHandler == NULL) {
- panic("FD selected with no handler");
debug(1, (stderr, "FD %d has NULL handler\n", fd));
+ panic("FD selected with no handler");
}
else
(FDD[fd].InputHandler) (fd);