about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2005-07-09 20:22:29 +0000
committerFlorian Westphal <fw@strlen.de>2005-07-09 20:22:29 +0000
commit178b564c51e4239ce22c89093436e0537fe47e39 (patch)
treeb6728665121893a180f4fdd47f873b5c5de2e62b /src
parentb976ec032fcad8e0d7b8af7782638ce8577fa245 (diff)
downloadngircd-178b564c51e4239ce22c89093436e0537fe47e39.tar.gz
ngircd-178b564c51e4239ce22c89093436e0537fe47e39.zip
io_library_shutdown: return void
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/io.h b/src/ngircd/io.h
index 3890bcc7..10444872 100644
--- a/src/ngircd/io.h
+++ b/src/ngircd/io.h
@@ -7,7 +7,7 @@
  *
  * I/O abstraction interface header
  *
- * $Id: io.h,v 1.1 2005/07/07 18:38:35 fw Exp $
+ * $Id: io.h,v 1.2 2005/07/09 20:22:29 fw Exp $
  */
 
 #ifndef io_H_inclucded
@@ -24,7 +24,7 @@
 bool io_library_init PARAMS((unsigned int ioevlen));
 
 /* shutdown and free all internal data structures */
-bool io_library_shutdown PARAMS((void));
+void io_library_shutdown PARAMS((void));
 
 /* add fd to internal set, enable readability check, set callback */
 bool io_event_create PARAMS((int fd, short what, void (*cbfunc)(int, short)));