From 9d37794a6c1db3b15ff235d18df05b0d9601b6b7 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 28 Feb 2008 02:07:06 -0800 Subject: Fix debug %lu message. Jeremy. (This used to be commit 644a3be37a6760c9e25ac1b286c7c225096e8b0d) --- source3/param/loadparm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 79c522f77c..71a5e90ea4 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3503,8 +3503,8 @@ bool lp_file_list_changed(void) libnet_conf_get_seqnum(conf_ctx, NULL, NULL)) { DEBUGADD(6, ("regdb seqnum changed: old = %lu, " - "new = %lu\n", conf_last_seqnum, - libnet_conf_get_seqnum(conf_ctx, NULL, NULL))); + "new = %lu\n", (unsigned long)conf_last_seqnum, + (unsigned long)libnet_conf_get_seqnum(conf_ctx, NULL, NULL))); return true; } else { /* -- cgit