1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r20503: And one more 64-bit warning

(This used to be commit 7bcde1069e)
This commit is contained in:
Volker Lendecke 2007-01-03 09:30:55 +00:00 committed by Gerald (Jerry) Carter
parent 801cf72cb8
commit bef14208ef

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_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);
}