diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-31 14:05:22 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-31 14:05:22 +0000 |
commit | 84ecd95dba6cf03070432b3cc37d511d310d1325 (patch) | |
tree | bdc3059f3fc45b243eab0bbc48075796cadd6ef3 /source3/tdb | |
parent | eb4e10115310b6ed23b92abac2e79454c80930b1 (diff) | |
download | samba-84ecd95dba6cf03070432b3cc37d511d310d1325.tar.gz samba-84ecd95dba6cf03070432b3cc37d511d310d1325.tar.bz2 samba-84ecd95dba6cf03070432b3cc37d511d310d1325.zip |
more irix -64 portability fixes
(This used to be commit 65e857b36e170e3ecd78bf6695ae73342e9c04cd)
Diffstat (limited to 'source3/tdb')
-rw-r--r-- | source3/tdb/tdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/tdb/tdb.c b/source3/tdb/tdb.c index 28425c2989..840b5b4af9 100644 --- a/source3/tdb/tdb.c +++ b/source3/tdb/tdb.c @@ -424,7 +424,8 @@ static tdb_off tdb_dump_record(TDB_CONTEXT *tdb, tdb_off offset) } if (tailer != rec.rec_len + sizeof(rec)) { - printf("ERROR: tailer does not match record! tailer=%u totalsize=%u\n", tailer, rec.rec_len + sizeof(rec)); + printf("ERROR: tailer does not match record! tailer=%u totalsize=%u\n", + (unsigned)tailer, (unsigned)(rec.rec_len + sizeof(rec))); } return rec.next; } |