diff options
Diffstat (limited to 'compress.c')
-rw-r--r-- | compress.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compress.c b/compress.c index 85a361d3a..2dea7cf36 100644 --- a/compress.c +++ b/compress.c | |||
@@ -12,7 +12,7 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include "includes.h" | 14 | #include "includes.h" |
15 | RCSID("$OpenBSD: compress.c,v 1.19 2002/03/18 17:31:54 provos Exp $"); | 15 | RCSID("$OpenBSD: compress.c,v 1.20 2004/01/13 19:23:15 markus Exp $"); |
16 | 16 | ||
17 | #include "log.h" | 17 | #include "log.h" |
18 | #include "buffer.h" | 18 | #include "buffer.h" |
@@ -56,11 +56,11 @@ buffer_compress_init_recv(void) | |||
56 | void | 56 | void |
57 | buffer_compress_uninit(void) | 57 | buffer_compress_uninit(void) |
58 | { | 58 | { |
59 | debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f", | 59 | debug("compress outgoing: raw data %llu, compressed %llu, factor %.2f", |
60 | outgoing_stream.total_in, outgoing_stream.total_out, | 60 | outgoing_stream.total_in, outgoing_stream.total_out, |
61 | outgoing_stream.total_in == 0 ? 0.0 : | 61 | outgoing_stream.total_in == 0 ? 0.0 : |
62 | (double) outgoing_stream.total_out / outgoing_stream.total_in); | 62 | (double) outgoing_stream.total_out / outgoing_stream.total_in); |
63 | debug("compress incoming: raw data %lu, compressed %lu, factor %.2f", | 63 | debug("compress incoming: raw data %llu, compressed %llu, factor %.2f", |
64 | incoming_stream.total_out, incoming_stream.total_in, | 64 | incoming_stream.total_out, incoming_stream.total_in, |
65 | incoming_stream.total_out == 0 ? 0.0 : | 65 | incoming_stream.total_out == 0 ? 0.0 : |
66 | (double) incoming_stream.total_in / incoming_stream.total_out); | 66 | (double) incoming_stream.total_in / incoming_stream.total_out); |