diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-08-11 21:19:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:01:39 -0500 |
commit | f3e13632813c543583fe1d04203825743aa99111 (patch) | |
tree | 0a58e5663e663a6cdd409872787c9cc4ed591e4d /source4/lib/tdb/common/lock.c | |
parent | f1f4f665b01aec093de9e93f399070f44f65a551 (diff) | |
download | samba-f3e13632813c543583fe1d04203825743aa99111.tar.gz samba-f3e13632813c543583fe1d04203825743aa99111.tar.bz2 samba-f3e13632813c543583fe1d04203825743aa99111.zip |
r24336: Use standard data type uint32_t rather than tdb-specific u32.
(This used to be commit f90a698387c53508862eb6359bd4d1fba1d2b4b0)
Diffstat (limited to 'source4/lib/tdb/common/lock.c')
-rw-r--r-- | source4/lib/tdb/common/lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/tdb/common/lock.c b/source4/lib/tdb/common/lock.c index e3f0b901a3..c0cb9c8766 100644 --- a/source4/lib/tdb/common/lock.c +++ b/source4/lib/tdb/common/lock.c @@ -523,7 +523,7 @@ int tdb_write_unlock_record(struct tdb_context *tdb, tdb_off_t off) int tdb_unlock_record(struct tdb_context *tdb, tdb_off_t off) { struct tdb_traverse_lock *i; - u32 count = 0; + uint32_t count = 0; if (off == 0) return 0; |