]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2004/01/13 19:45:15
authordjm <djm>
Wed, 21 Jan 2004 00:01:23 +0000 (00:01 +0000)
committerdjm <djm>
Wed, 21 Jan 2004 00:01:23 +0000 (00:01 +0000)
     [compress.c]
     cast for portability; millert@

ChangeLog
compress.c

index 4e43ceb58acbfc52c4e6745a3cbb16bbb9a260c8..0e033f6042721cbfae11744dc27ea6e0164151fa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,9 @@
    - markus@cvs.openbsd.org 2004/01/13 19:23:15
      [compress.c session.c]
      -Wall; ok henning
+   - markus@cvs.openbsd.org 2004/01/13 19:45:15
+     [compress.c]
+     cast for portability; millert@
 
 20040114
  - (dtucker) [auth-pam.c] Have monitor die if PAM authentication thread exits
index 2dea7cf36f52efda07a1321a5222fbd6c7274da0..0d1c7e55e8ed49180229982c9208c07833d38f37 100644 (file)
@@ -12,7 +12,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: compress.c,v 1.20 2004/01/13 19:23:15 markus Exp $");
+RCSID("$OpenBSD: compress.c,v 1.21 2004/01/13 19:45:15 markus Exp $");
 
 #include "log.h"
 #include "buffer.h"
@@ -57,11 +57,13 @@ void
 buffer_compress_uninit(void)
 {
        debug("compress outgoing: raw data %llu, compressed %llu, factor %.2f",
-           outgoing_stream.total_in, outgoing_stream.total_out,
+           (unsigned long long)outgoing_stream.total_in,
+           (unsigned long long)outgoing_stream.total_out,
            outgoing_stream.total_in == 0 ? 0.0 :
            (double) outgoing_stream.total_out / outgoing_stream.total_in);
        debug("compress incoming: raw data %llu, compressed %llu, factor %.2f",
-           incoming_stream.total_out, incoming_stream.total_in,
+           (unsigned long long)incoming_stream.total_out,
+           (unsigned long long)incoming_stream.total_in,
            incoming_stream.total_out == 0 ? 0.0 :
            (double) incoming_stream.total_in / incoming_stream.total_out);
        if (compress_init_recv_called == 1 && inflate_failed == 0)
This page took 0.528083 seconds and 5 git commands to generate.