From fa2e9ec311b99dee2fbff5ee5fa2c743298dacad Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 1 Jun 2004 08:12:45 +0000 Subject: r960: convert 'unsigned int' to uint_t in the most places metze (This used to be commit 18062d2ed9fc9224c43143c10efbf2f6f1f5bbe0) --- source4/client/client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/client/client.c') diff --git a/source4/client/client.c b/source4/client/client.c index 1f813a3d18..1d428a4f0e 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -84,9 +84,9 @@ static pstring fileselection = ""; /* timing globals */ uint64_t get_total_size = 0; -unsigned int get_total_time_ms = 0; +uint_t get_total_time_ms = 0; static uint64_t put_total_size = 0; -static unsigned int put_total_time_ms = 0; +static uint_t put_total_time_ms = 0; /* totals globals */ static double dir_total; @@ -1926,7 +1926,7 @@ static int cmd_chmod(void) if (NT_STATUS_IS_ERR(cli_unix_chmod(cli->tree, src, mode))) { d_printf("%s chmod file %s 0%o\n", - cli_errstr(cli->tree), src, (unsigned int)mode); + cli_errstr(cli->tree), src, (uint_t)mode); return 1; } -- cgit