]> granicus.if.org Git - apache/commitdiff
Fix some casting
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 18 Jul 2001 17:56:14 +0000 (17:56 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 18 Jul 2001 17:56:14 +0000 (17:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89595 13f79535-47bb-0310-9956-ffa450edef68

support/ab.c

index 43d47c632a5f8d2d8cbc2132eb0b616e0050713d..21d08d400991113f6224319614fd882e09cb027f 100644 (file)
@@ -470,9 +470,9 @@ static void output_results(void)
     printf("Document Length:        %d bytes\n", doclen);
     printf("\n");
     printf("Concurrency Level:      %d\n", concurrency);
-    printf("Time taken for tests:   %" APR_TIME_T_FMT ".%03" APR_TIME_T_FMT " seconds\n",
-           (apr_interval_time_t) timetakenusec / APR_USEC_PER_SEC,
-           (apr_interval_time_t) timetakenusec % APR_USEC_PER_SEC);
+    printf("Time taken for tests:   %ld.%03ld seconds\n",
+           (long) (timetakenusec / APR_USEC_PER_SEC),
+           (long) (timetakenusec % APR_USEC_PER_SEC));
     printf("Complete requests:      %ld\n", done);
     printf("Failed requests:        %ld\n", bad);
     if (bad)
@@ -490,17 +490,19 @@ static void output_results(void)
 
     /* avoid divide by zero */
     if (timetaken) {
-       printf("Requests per second:    %.2f [#/sec] (mean)\n", done / timetaken);
-       printf("Time per request:       %.3f [ms] (mean)\n", concurrency * timetaken / done);
+       printf("Requests per second:    %.2f [#/sec] (mean)\n", 
+               (float) (done / timetaken));
+       printf("Time per request:       %.3f [ms] (mean)\n", 
+               (float) (concurrency * timetaken / done));
        printf("Time per request:       %.3f [ms] (mean, across all concurrent requests)\n",
-              timetaken / done);
+              (float) (timetaken / done));
        printf("Transfer rate:          %.2f [Kbytes/sec] received\n",
-              totalread / 1024 / timetaken);
+              (float) (totalread / 1024 / timetaken));
        if (posting > 0) {
            printf("                        %.2f kb/s sent\n",
-                  (float) totalposted / timetaken / 1024);
+                  (float) (totalposted / timetaken / 1024));
            printf("                        %.2f kb/s total\n",
-                  (float) (totalread + totalposted) / timetaken / 1024);
+                  (float) ((totalread + totalposted) / timetaken / 1024));
        }
     }
 
@@ -1289,14 +1291,14 @@ static void test(void)
 static void copyright(void)
 {
     if (!use_html) {
-       printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.74 $> apache-2.0");
+       printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.75 $> apache-2.0");
        printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n");
        printf("Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/\n");
        printf("\n");
     }
     else {
        printf("<p>\n");
-       printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.74 $");
+       printf(" This is ApacheBench, Version %s <i>&lt;%s&gt;</i> apache-2.0<br>\n", AB_VERSION, "$Revision: 1.75 $");
        printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/<br>\n");
        printf(" Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/<br>\n");
        printf("</p>\n<p>\n");