diff options
| author | Florian Westphal <fw@strlen.de> | 2006-09-19 18:21:30 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2006-09-19 18:21:30 +0000 |
| commit | a2f5a05ff86402bb7fb09094c52d607743fc9f49 (patch) | |
| tree | 0ed1968d61aaea66b0f0e4a778a98e7f60f18123 /src | |
| parent | 639eb400354dc5b69deb17f20a52e0045f6e93e4 (diff) | |
| download | ngircd-a2f5a05ff86402bb7fb09094c52d607743fc9f49.tar.gz ngircd-a2f5a05ff86402bb7fb09094c52d607743fc9f49.zip | |
io_close_poll()s closing brace mysteriously disappeared... fixed.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/io.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngircd/io.c b/src/ngircd/io.c index fb3ebd8e..e3314646 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.20 2006/09/17 10:41:07 fw Exp $"; +static char UNUSED id[] = "$Id: io.c,v 1.21 2006/09/19 18:21:30 fw Exp $"; #include <assert.h> #include <stdlib.h> @@ -524,6 +524,7 @@ io_close_poll(int fd) break; } } +} #else static inline void io_close_poll(int UNUSED x) { /* NOTHING */ } #endif |