diff options
| author | Florian Westphal <fw@strlen.de> | 2005-07-12 20:44:13 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2005-07-12 20:44:13 +0000 |
| commit | ca130e6db6db0c306885c249744d94548896eecb (patch) | |
| tree | cb464fec5151ce6d33da0581ab86f90a3852d680 /src | |
| parent | 248d75e566533e4f1c1278338d1205ad69781177 (diff) | |
| download | ngircd-ca130e6db6db0c306885c249744d94548896eecb.tar.gz ngircd-ca130e6db6db0c306885c249744d94548896eecb.zip | |
removed unneeded return statement
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/io.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ngircd/io.c b/src/ngircd/io.c index a428ca30..6b4081c8 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.2 2005/07/09 20:23:00 fw Exp $"; +static char UNUSED id[] = "$Id: io.c,v 1.3 2005/07/12 20:44:13 fw Exp $"; #include <assert.h> #include <stdlib.h> @@ -162,7 +162,6 @@ io_library_shutdown(void) #ifdef IO_USE_KQUEUE array_free(&io_evcache); #endif - return true; } |