about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2007-01-19 13:52:54 +0000
committerFlorian Westphal <fw@strlen.de>2007-01-19 13:52:54 +0000
commitea2a4b33703f3da6a453a81891a5320bd087995b (patch)
treeb990a4c248012ada30d94e696d850596a52ca890
parentf9b9850662ee01aae9941bef611df5040b0ff2e0 (diff)
downloadngircd-ea2a4b33703f3da6a453a81891a5320bd087995b.tar.gz
ngircd-ea2a4b33703f3da6a453a81891a5320bd087995b.zip
fix broken IO_DEBUG build
-rw-r--r--src/ngircd/io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/io.c b/src/ngircd/io.c
index 660a1395..cb996e40 100644
--- a/src/ngircd/io.c
+++ b/src/ngircd/io.c
@@ -12,7 +12,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: io.c,v 1.24 2007/01/18 00:25:26 fw Exp $";
+static char UNUSED id[] = "$Id: io.c,v 1.25 2007/01/19 13:52:54 fw Exp $";
 
 #include <assert.h>
 #include <stdlib.h>
@@ -467,7 +467,7 @@ io_event_add(int fd, short what)
 	if ((i->what & what) == what) /* event type is already registered */
 		return true;
 #ifdef DEBUG_IO
-	Log(LOG_DEBUG, "io_event_add(): fd %d (arg: %d), what %d.", i->fd, fd, what);
+	Log(LOG_DEBUG, "io_event_add(): fd %d, what %d.", fd, what);
 #endif
 	i->what |= what;
 #ifdef IO_USE_EPOLL