From 3ba704cd4f58e453ff225607ae6b1f327694e999 Mon Sep 17 00:00:00 2001
From: fhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>
Date: Thu, 28 Dec 2000 22:55:09 +0000
Subject: ChangeLogTag: Thu Dec 28 16:10:59 2000  Frank Hunleth 
 <fhunleth@cs.wustl.edu>

---
 performance-tests/UDP/udp_test.cpp | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

(limited to 'performance-tests/UDP')

diff --git a/performance-tests/UDP/udp_test.cpp b/performance-tests/UDP/udp_test.cpp
index 145e904bf81..45fa0988950 100644
--- a/performance-tests/UDP/udp_test.cpp
+++ b/performance-tests/UDP/udp_test.cpp
@@ -258,9 +258,15 @@ Client::run (void)
 
       if (i < 0 )
         {
+#ifndef ACE_LACKS_LONGLONG_T
           ACE_DEBUG ((LM_DEBUG,
                       "Ignoring first sample of %u usecs\n",
-                      (ACE_UINT32) (sample)));
+                       (ACE_UINT32) (sample)));
+#else
+          ACE_DEBUG ((LM_DEBUG,
+                      "Ignoring first sample of %u usecs\n",
+                      (ACE_UINT32) (sample.lo())));
+#endif
           continue;
         }
       else if (max_allow > 0  &&  sample > max_allow)
-- 
cgit v1.2.1