From 4c1762c3a87021002da35609f455e34516de2324 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 23 Jul 2012 13:21:25 -0700 Subject: [PATCH] Fix debug print warning message. --- source4/ldap_server/ldap_backend.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source4/ldap_server/ldap_backend.c b/source4/ldap_server/ldap_backend.c index 000d7e28f81..f415e9bf62a 100644 --- a/source4/ldap_server/ldap_backend.c +++ b/source4/ldap_server/ldap_backend.c @@ -1205,7 +1205,9 @@ NTSTATUS ldapsrv_do_call(struct ldapsrv_call *call) if (NT_STATUS_IS_OK(status)) { lastts = (time_t *)ldb_get_opaque(samdb, DSDB_OPAQUE_LAST_SCHEMA_UPDATE_MSG_OPAQUE_NAME); if (lastts && !*lastts) { - DEBUG(10, ("Schema update now was requested, fullfilling the request ts = %d\n", lastts)); + DEBUG(10, ("Schema update now was requested, " + "fullfilling the request ts = %d\n", + (int)*lastts)); /* * Just requesting the schema will do the trick * as the delay for reload is experied, we will have a reload -- 2.11.4.GIT