From 8d93570cdf88097b391841373b042296619340fc Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Mon, 9 Jan 2006 21:27:45 +0000 Subject: [PATCH] fix type specifier in format --- clients/tools/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/tools/common.c b/clients/tools/common.c index ba5b546b71..86bd7efda5 100644 --- a/clients/tools/common.c +++ b/clients/tools/common.c @@ -1424,7 +1424,7 @@ print_paged_results( LDAP *ld, LDAPControl *ctrl ) if ( estimate > 0 ) { ptr += snprintf( ptr, sizeof( buf ) - ( ptr - buf ), - "estimate=%lu", estimate ); + "estimate=%d", estimate ); } if ( pr_cookie.bv_len > 0 ) { -- 2.39.5