From 571ab20d1da227fb66d52ed52cce0cbd4591e1c9 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 22 Aug 2018 04:27:15 -0700 Subject: Consolidate the [un]format_mac_address implementations Change-Id: Ic4c42c5610a827234e6582501f0ddcba47aa34ee Signed-off-by: Neale Ranns --- src/examples/sample-plugin/sample/node.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/examples') diff --git a/src/examples/sample-plugin/sample/node.c b/src/examples/sample-plugin/sample/node.c index 1b512090469..7f34be56168 100644 --- a/src/examples/sample-plugin/sample/node.c +++ b/src/examples/sample-plugin/sample/node.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -26,13 +27,6 @@ typedef struct u8 new_dst_mac[6]; } sample_trace_t; -static u8 * -format_mac_address (u8 * s, va_list * args) -{ - u8 *a = va_arg (*args, u8 *); - return format (s, "%02x:%02x:%02x:%02x:%02x:%02x", - a[0], a[1], a[2], a[3], a[4], a[5]); -} /* packet trace format function */ static u8 * -- cgit 1.2.3-korg