1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-30 17:49:30 +03:00

r20503: And one more 64-bit warning

This commit is contained in:
Volker Lendecke
2007-01-03 09:30:55 +00:00
committed by Gerald (Jerry) Carter
parent 56c8d2cfed
commit 7bcde1069e

View File

@ -126,7 +126,7 @@ static int tdb_read(struct tdb_context *tdb, tdb_off_t off, void *buf,
tdb->ecode = TDB_ERR_IO; tdb->ecode = TDB_ERR_IO;
TDB_LOG((tdb, TDB_DEBUG_FATAL,"tdb_read failed at %d " TDB_LOG((tdb, TDB_DEBUG_FATAL,"tdb_read failed at %d "
"len=%d ret=%d (%s) map_size=%d\n", "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)); (int)tdb->map_size));
return TDB_ERRCODE(TDB_ERR_IO, -1); return TDB_ERRCODE(TDB_ERR_IO, -1);
} }