diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-04 22:30:36 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-04 22:30:36 +0200 |
commit | 93a786cb034fdd18b8131a16a6ea3d1cd9bd00de (patch) | |
tree | 7880559e8ad6f66b65a0fc97dfdf69f491a00e4a /sysdep/unix/io.c | |
parent | c817b9916f1134f687ba53220d607e6e193cf651 (diff) | |
download | bird-93a786cb034fdd18b8131a16a6ea3d1cd9bd00de.tar bird-93a786cb034fdd18b8131a16a6ea3d1cd9bd00de.zip |
Removed a lot of unused variables.
Please try compiling your code with --enable-warnings to see them. (The
unused parameter warnings are usually bogus, the unused variable ones
are very useful, but gcc is unable to control them separately.)
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r-- | sysdep/unix/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index 895f537..996b971 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -521,7 +521,7 @@ sk_passive_connected(sock *s, struct sockaddr *sa, int al, int type) int sk_open(sock *s) { - int fd, e; + int fd; sockaddr sa; int one = 1; int type = s->type; |