From 770e3307ce3da928762e15a136c562df86a9c799 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 1 Jun 2004 10:12:52 +0000 Subject: r962: convert 'unsigned' and 'unsigned int' to uint_t metze (This used to be commit 57151e80eb1090281401930c8fe25b20a8cf3a38) --- source4/torture/basic/mangle_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/torture/basic/mangle_test.c') diff --git a/source4/torture/basic/mangle_test.c b/source4/torture/basic/mangle_test.c index 94dac45b9d..4859ee7c4c 100644 --- a/source4/torture/basic/mangle_test.c +++ b/source4/torture/basic/mangle_test.c @@ -24,7 +24,7 @@ static TDB_CONTEXT *tdb; #define NAME_LENGTH 20 -static unsigned total, collisions, failures; +static uint_t total, collisions, failures; static BOOL test_one(struct cli_state *cli, const char *name) { @@ -108,8 +108,8 @@ static BOOL test_one(struct cli_state *cli, const char *name) static void gen_name(char *name) { const char *chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz._-$~..."; - unsigned max_idx = strlen(chars); - unsigned len; + uint_t max_idx = strlen(chars); + uint_t len; int i; char *p; -- cgit