You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by jo...@apache.org on 2005/09/20 19:26:09 UTC

svn commit: r290490 - /httpd/test/trunk/perl-framework/c-modules/random_chunk/mod_random_chunk.c

Author: jorton
Date: Tue Sep 20 10:26:05 2005
New Revision: 290490

URL: http://svn.apache.org/viewcvs?rev=290490&view=rev
Log:
- fix more format string warnings

Modified:
    httpd/test/trunk/perl-framework/c-modules/random_chunk/mod_random_chunk.c

Modified: httpd/test/trunk/perl-framework/c-modules/random_chunk/mod_random_chunk.c
URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/c-modules/random_chunk/mod_random_chunk.c?rev=290490&r1=290489&r2=290490&view=diff
==============================================================================
--- httpd/test/trunk/perl-framework/c-modules/random_chunk/mod_random_chunk.c (original)
+++ httpd/test/trunk/perl-framework/c-modules/random_chunk/mod_random_chunk.c Tue Sep 20 10:26:05 2005
@@ -171,9 +171,10 @@
         }
     }
 
-    ap_rprintf(r, "__END__:%d", total);
+    ap_rprintf(r, "__END__:%" APR_SIZE_T_FMT, total);
 
-    fprintf(stderr, "[mod_random_chunk] sent %d bytes\n", total);
+    fprintf(stderr, "[mod_random_chunk] sent %" APR_SIZE_T_FMT "bytes\n", 
+            total);
 
     return 0;
 }