epmapper: Fix printf specifiers
authorVolker Lendecke <vl@samba.org>
Sat, 28 Sep 2019 00:20:26 +0000 (17:20 -0700)
committerRalph Boehme <slow@samba.org>
Wed, 2 Oct 2019 08:01:40 +0000 (08:01 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/rpc_server/epmapper/srv_epmapper.c

index d548a2c2d7b04bd82fb412e51a0181b1ab7a4276..1785cbbcfff206111e8cda99342333dd7dbc2c2a 100644 (file)
@@ -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;