diff options
author | 2000-12-20 19:37:21 +0000 | |
---|---|---|
committer | 2000-12-20 19:37:21 +0000 | |
commit | 1829452d07bebfae657e6a01ba3b7684119a1115 (patch) | |
tree | cfc4a6c70ee988664bbc92d208466b33e0f1b52f /usr.bin/ssh/compress.c | |
parent | init pointer to NULL; report from Jan.Iven@cern.ch (diff) | |
download | wireguard-openbsd-1829452d07bebfae657e6a01ba3b7684119a1115.tar.xz wireguard-openbsd-1829452d07bebfae657e6a01ba3b7684119a1115.zip |
fix prototypes; from stevesk@pobox.com
Diffstat (limited to 'usr.bin/ssh/compress.c')
-rw-r--r-- | usr.bin/ssh/compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/compress.c b/usr.bin/ssh/compress.c index 3c05886e10a..2437606b7ab 100644 --- a/usr.bin/ssh/compress.c +++ b/usr.bin/ssh/compress.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: compress.c,v 1.10 2000/12/19 23:17:56 markus Exp $"); +RCSID("$OpenBSD: compress.c,v 1.11 2000/12/20 19:37:21 markus Exp $"); #include "ssh.h" #include "buffer.h" @@ -39,7 +39,7 @@ buffer_compress_init(int level) /* Frees any data structures allocated for compression. */ void -buffer_compress_uninit() +buffer_compress_uninit(void) { debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f", outgoing_stream.total_in, outgoing_stream.total_out, |