diff options
author | Günther Deschner <gd@samba.org> | 2007-08-28 15:07:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:30:17 -0500 |
commit | 579fb55b7556dc90b42f77d5fc9e9c31f34974e5 (patch) | |
tree | e3a4c9860711112a6691d6aacae38f540e543263 | |
parent | 3263cd680fe429430d789b284464fca72ef45719 (diff) | |
download | samba-579fb55b7556dc90b42f77d5fc9e9c31f34974e5.tar.gz samba-579fb55b7556dc90b42f77d5fc9e9c31f34974e5.tar.xz samba-579fb55b7556dc90b42f77d5fc9e9c31f34974e5.zip |
r24743: Fix build warning.
Guenther
-rw-r--r-- | source/lib/tdb/common/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/tdb/common/io.c b/source/lib/tdb/common/io.c index 40b0288ba8a..c963e66ad4d 100644 --- a/source/lib/tdb/common/io.c +++ b/source/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, |