1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

removed unneeded return statement

This commit is contained in:
Florian Westphal 2005-07-12 20:44:13 +00:00
parent 248d75e566
commit ca130e6db6

View File

@ -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;
}