diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-03 09:30:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:54 -0500 |
commit | bef14208efbf7fd10de0806185e563cd394c2860 (patch) | |
tree | 17942508d2aa7018cbc89771ac5b8724631b3f0e | |
parent | 801cf72cb8de75f21aa85a9345ec3a17f53e08e6 (diff) | |
download | samba-bef14208efbf7fd10de0806185e563cd394c2860.tar.gz samba-bef14208efbf7fd10de0806185e563cd394c2860.tar.bz2 samba-bef14208efbf7fd10de0806185e563cd394c2860.zip |
r20503: And one more 64-bit warning
(This used to be commit 7bcde1069e38d70808d78c408f16821a0bfadcdd)
-rw-r--r-- | source3/tdb/common/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/tdb/common/io.c b/source3/tdb/common/io.c index 1fa947019b..988ce1d911 100644 --- a/source3/tdb/common/io.c +++ b/source3/tdb/common/io.c @@ -126,7 +126,7 @@ static int tdb_read(struct tdb_context *tdb, tdb_off_t off, void *buf, tdb->ecode = TDB_ERR_IO; TDB_LOG((tdb, TDB_DEBUG_FATAL,"tdb_read failed at %d " "len=%d ret=%d (%s) map_size=%d\n", - (int)off, (int)len, ret, strerror(errno), + (int)off, (int)len, (int)ret, strerror(errno), (int)tdb->map_size)); return TDB_ERRCODE(TDB_ERR_IO, -1); } |