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/torture/basic/denytest.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/torture/basic/denytest.c') diff --git a/source4/torture/basic/denytest.c b/source4/torture/basic/denytest.c index 501647eee4..2019ec5a02 100644 --- a/source4/torture/basic/denytest.c +++ b/source4/torture/basic/denytest.c @@ -1399,7 +1399,7 @@ static const struct { }; -static void progress_bar(struct torture_context *tctx, uint_t i, uint_t total) +static void progress_bar(struct torture_context *tctx, unsigned int i, unsigned int total) { if (torture_setting_bool(tctx, "progress", true)) { torture_comment(tctx, "%5d/%5d\r", i, total); @@ -2279,8 +2279,8 @@ static bool createx_test_file(struct torture_context *tctx, /* TODO When redirecting stdout to a file, the progress bar really screws up * the output. Could use a switch "--noprogress", or direct the progress bar to * stderr? No other solution? */ -static void createx_progress_bar(struct torture_context *tctx, uint_t i, - uint_t total, uint_t skipped) +static void createx_progress_bar(struct torture_context *tctx, unsigned int i, + unsigned int total, unsigned int skipped) { if (torture_setting_bool(tctx, "progress", true)) { torture_comment(tctx, "%5d/%5d (%d skipped)\r", i, total, -- cgit