Commit a577f946 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

fix a *printf() format


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91435 13f79535-47bb-0310-9956-ffa450edef68
parent d2b3b007
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -378,7 +378,8 @@ static int status_handler(request_rec *r)

    if (ap_extended_status) {
	if (short_report) {
	    ap_rprintf(r, "Total Accesses: %lu\nTotal kBytes: %lu\n",
	    ap_rprintf(r, "Total Accesses: %lu\nTotal kBytes: %" 
                       APR_OFF_T_FMT "\n",
                       count, kbcount);

#ifdef HAVE_TIMES