summaryrefslogtreecommitdiff
path: root/source4/dsdb
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-09-13 23:07:10 +1000
committerAndrew Tridgell <tridge@samba.org>2010-09-15 15:39:35 +1000
commitce2004d631bb7eb0aa838f07ef48465a6f199d22 (patch)
tree4c9e173d8cf7f6c45cc32b94491c52ad58611fe4 /source4/dsdb
parent041c699f3ae10d189405b93977e3143813fb4525 (diff)
downloadsamba-ce2004d631bb7eb0aa838f07ef48465a6f199d22.tar.gz
samba-ce2004d631bb7eb0aa838f07ef48465a6f199d22.tar.bz2
samba-ce2004d631bb7eb0aa838f07ef48465a6f199d22.zip
s4: fixed some printf format errors
Diffstat (limited to 'source4/dsdb')
-rw-r--r--source4/dsdb/samdb/ldb_modules/repl_meta_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
index 5815e9158d..45ef4d9961 100644
--- a/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
+++ b/source4/dsdb/samdb/ldb_modules/repl_meta_data.c
@@ -1197,7 +1197,7 @@ static int replmd_update_rpmd(struct ldb_module *module,
if (*seq_num <= db_seq) {
DEBUG(0,(__location__ ": changereplmetada control provided but max(local_usn)"\
" is less or equal to uSNChanged (max = %lld uSNChanged = %lld)\n",
- *seq_num, db_seq));
+ (long long)*seq_num, (long long)db_seq));
return LDB_ERR_OPERATIONS_ERROR;
}