From a6568626a53ce13951d1f7d023d4843c3f2cf524 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Mon, 7 Nov 2011 19:31:53 +0800 Subject: [PATCH] Use "uint64_t" instead of "u_int64_t" since the Solaris doesn't have the latter --- scp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scp.c b/scp.c index 48b4017..961165a 100644 --- a/scp.c +++ b/scp.c @@ -773,7 +773,7 @@ bwlimit(int amount) { static struct timeval bwstart, bwend; static int lamt, thresh = 16384; - u_int64_t waitlen; + uint64_t waitlen; struct timespec ts, rm; if (!timerisset(&bwstart)) {