diff options
Diffstat (limited to 'proto')
-rw-r--r-- | proto/bfd/bfd.c | 2 | ||||
-rw-r--r-- | proto/bgp/attrs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/proto/bfd/bfd.c b/proto/bfd/bfd.c index 59134a22..1ef92b18 100644 --- a/proto/bfd/bfd.c +++ b/proto/bfd/bfd.c @@ -860,7 +860,7 @@ bfd_request_free(resource *r) } static void -bfd_request_dump(resource *r) +bfd_request_dump(resource *r, unsigned indent UNUSED) { struct bfd_request *req = (struct bfd_request *) r; diff --git a/proto/bgp/attrs.c b/proto/bgp/attrs.c index 2f72719f..039fdff5 100644 --- a/proto/bgp/attrs.c +++ b/proto/bgp/attrs.c @@ -1839,7 +1839,7 @@ bgp_pending_tx_rfree(resource *r) HASH_WALK_END; } -static void bgp_pending_tx_dump(resource *r UNUSED) { debug("\n"); } +static void bgp_pending_tx_dump(resource *r UNUSED, unsigned indent UNUSED) { debug("\n"); } static struct resclass bgp_pending_tx_class = { .name = "BGP Pending TX", |