From: Volker Lendecke Date: Sat, 28 Sep 2019 00:20:26 +0000 (-0700) Subject: epmapper: Fix printf specifiers X-Git-Tag: talloc-2.3.1~515 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86672659c6a757263c7bf64d152f95d89222a3e7;p=thirdparty%2Fsamba.git epmapper: Fix printf specifiers Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- diff --git a/source3/rpc_server/epmapper/srv_epmapper.c b/source3/rpc_server/epmapper/srv_epmapper.c index d548a2c2d7b..1785cbbcfff 100644 --- a/source3/rpc_server/epmapper/srv_epmapper.c +++ b/source3/rpc_server/epmapper/srv_epmapper.c @@ -378,8 +378,8 @@ error_status_t _epm_Insert(struct pipes_struct *p, return EPMAPPER_STATUS_NO_MEMORY; } - DEBUG(3, ("_epm_Insert: Trying to add %u new entries.\n", - r->in.num_ents)); + DBG_NOTICE("Trying to add %"PRIu32" new entries.\n", + r->in.num_ents); for (i = 0; i < r->in.num_ents; i++) { enum dcerpc_transport_t transport;