From 1c9792941ffca135bd7b43b08cd08e5983b78641 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 10 May 2015 10:52:32 -0700 Subject: [PATCH] iscsi-perf: use uint64_t instead of u_int64_t because portability Signed-off-by: Ronnie Sahlberg --- utils/iscsi-perf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/iscsi-perf.c b/utils/iscsi-perf.c index ed99d18..a27d50a 100644 --- a/utils/iscsi-perf.c +++ b/utils/iscsi-perf.c @@ -71,9 +71,9 @@ struct client { int retry_cnt; }; -u_int64_t get_clock_ns(void) { +uint64_t get_clock_ns(void) { int res; - u_int64_t ns; + uint64_t ns; #ifdef HAVE_CLOCK_GETTIME struct timespec ts;