From d8071e7ed7c57e8b0f2d80420e27f9ea7ab63022 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Tue, 5 Jan 2010 09:42:54 -0800 Subject: Change uint_t to unsigned int in source4 Signed-off-by: Stefan Metzmacher --- source4/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/client') diff --git a/source4/client/client.c b/source4/client/client.c index 71e666b74e..1958dfc42f 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -72,9 +72,9 @@ struct smbclient_context { /* timing globals */ static uint64_t get_total_size = 0; -static uint_t get_total_time_ms = 0; +static unsigned int get_total_time_ms = 0; static uint64_t put_total_size = 0; -static uint_t put_total_time_ms = 0; +static unsigned int put_total_time_ms = 0; /* Unfortunately, there is no way to pass the a context to the completion function as an argument */ static struct smbclient_context *rl_ctx; -- cgit