diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-03 06:39:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:53 -0500 |
commit | 8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80 (patch) | |
tree | 3340b9bfce3305483255e8b0b535eca0c4e9f2ff /source3/tdb/common/io.c | |
parent | 9985f25f0031cb1c91fd99cddf6f80bdf66b4dad (diff) | |
download | samba-8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80.tar.gz samba-8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80.tar.bz2 samba-8cc702bf5aeb0bedf012affb0c476cfc5f3dfa80.zip |
r20498: Two 64-bit warnings
(This used to be commit 382827ebac61646ec31fe1d56ccde2ea337e8f9e)
Diffstat (limited to 'source3/tdb/common/io.c')
-rw-r--r-- | source3/tdb/common/io.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/tdb/common/io.c b/source3/tdb/common/io.c index 9a6084888d..1fa947019b 100644 --- a/source3/tdb/common/io.c +++ b/source3/tdb/common/io.c @@ -124,8 +124,10 @@ static int tdb_read(struct tdb_context *tdb, tdb_off_t off, void *buf, if (ret != (ssize_t)len) { /* Ensure ecode is set for log fn. */ 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", - off, len, ret, strerror(errno), (int)tdb->map_size)); + 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)tdb->map_size)); return TDB_ERRCODE(TDB_ERR_IO, -1); } } |