From 26d1430283bd4ae8b8a84f3253e33417d509c1a4 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 12 Aug 2007 00:55:03 +0000 Subject: r24340: Use standard data type uint32_t rather than tdb-specific u32. --- source/lib/tdb/common/traverse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/lib/tdb/common/traverse.c') diff --git a/source/lib/tdb/common/traverse.c b/source/lib/tdb/common/traverse.c index f425bee5e95..86fa4fd48e6 100644 --- a/source/lib/tdb/common/traverse.c +++ b/source/lib/tdb/common/traverse.c @@ -278,7 +278,7 @@ TDB_DATA tdb_firstkey(struct tdb_context *tdb) /* find the next entry in the database, returning its key */ TDB_DATA tdb_nextkey(struct tdb_context *tdb, TDB_DATA oldkey) { - u32 oldhash; + uint32_t oldhash; TDB_DATA key = tdb_null; struct list_struct rec; unsigned char *k = NULL; -- cgit v1.2.1