]> granicus.if.org Git - apache/commitdiff
fix a *printf() format
authorJeff Trawick <trawick@apache.org>
Thu, 11 Oct 2001 19:53:36 +0000 (19:53 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 11 Oct 2001 19:53:36 +0000 (19:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91435 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_status.c

index c51595f1cb3fd43f5564e003b143c625db31e89c..46e672d4d839af3754f2973b6f5ea578fdd08050 100644 (file)
@@ -378,8 +378,9 @@ static int status_handler(request_rec *r)
 
     if (ap_extended_status) {
        if (short_report) {
-           ap_rprintf(r, "Total Accesses: %lu\nTotal kBytes: %lu\n",
-               count, kbcount);
+           ap_rprintf(r, "Total Accesses: %lu\nTotal kBytes: %" 
+                       APR_OFF_T_FMT "\n",
+                       count, kbcount);
 
 #ifdef HAVE_TIMES
            /* Allow for OS/2 not having CPU stats */