From f6ed527150d1fbda58264392de587c85f70df17f Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Mon, 17 May 2010 13:26:59 +0200 Subject: [PATCH] Fix the log statement on sel file descriptor (sel_fd) --- src/eventl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eventl.c b/src/eventl.c index faba34d..ddd8e54 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -208,7 +208,7 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) { if (p->fd > max) max = p->fd; } - yaz_log(man->log_level, "max=%d nofds=%d", max, man->sel_fd); + yaz_log(man->log_level, "max=%d sel_fd=%d", max, man->sel_fd); if (man->sel_fd != -1) { if (man->sel_fd > max) -- 1.7.10.4