diff options
author | Matt Kraai <mkraai@beckman.com> | 2010-01-05 09:42:54 -0800 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-02 07:18:18 +0100 |
commit | d8071e7ed7c57e8b0f2d80420e27f9ea7ab63022 (patch) | |
tree | 9ee0823d8f3e43217989f15c442ab747e84d22c2 /source4/client/client.c | |
parent | a47b6ebb3036f5073fdb2320b584345d3604c38d (diff) | |
download | samba-d8071e7ed7c57e8b0f2d80420e27f9ea7ab63022.tar.gz samba-d8071e7ed7c57e8b0f2d80420e27f9ea7ab63022.tar.bz2 samba-d8071e7ed7c57e8b0f2d80420e27f9ea7ab63022.zip |
Change uint_t to unsigned int in source4
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/client/client.c')
-rw-r--r-- | source4/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |