diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-08-12 00:55:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:30 -0500 |
commit | 26d1430283bd4ae8b8a84f3253e33417d509c1a4 (patch) | |
tree | e978af22ddc2f5f7dee5a3fc143d179c0fd09b43 /source/lib/tdb/common/traverse.c | |
parent | 9ad91bd20592850d7b6393e1ac7f0e0919d69668 (diff) | |
download | samba-26d1430283bd4ae8b8a84f3253e33417d509c1a4.tar.gz |
r24340: Use standard data type uint32_t rather than tdb-specific u32.
Diffstat (limited to 'source/lib/tdb/common/traverse.c')
-rw-r--r-- | source/lib/tdb/common/traverse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |