From 068d95cde19f339d71b3566f16eed0e5d6ab9d46 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 28 Aug 2007 15:07:13 +0000 Subject: r24743: Fix build warning. Guenther (This used to be commit 579fb55b7556dc90b42f77d5fc9e9c31f34974e5) --- source3/lib/tdb/common/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/lib/tdb/common/io.c b/source3/lib/tdb/common/io.c index 40b0288ba8..c963e66ad4 100644 --- a/source3/lib/tdb/common/io.c +++ b/source3/lib/tdb/common/io.c @@ -94,7 +94,7 @@ static int tdb_write(struct tdb_context *tdb, tdb_off_t off, /* try once more */ TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_write: wrote only " "%d of %d bytes at %d, trying once more\n", - written, len, off)); + (int)written, len, off)); errno = ENOSPC; written = pwrite(tdb->fd, (void *)((char *)buf+written), len-written, -- cgit