From: Rami Rosen Date: Sun, 13 Jan 2019 15:02:12 +0000 (+0200) Subject: examples/tep_term: remove unused constant X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c8516e3caa711ef42132d5b08b7c755b86c6e0c3;p=dpdk.git examples/tep_term: remove unused constant The definition of MAX_PRINT_BUFF in examples/tep_termination/main.c is not necessary as it is not used. This cleanup patch removes it. Fixes: a50245ede72a ("examples/tep_term: initialize VXLAN sample") Cc: stable@dpdk.org Signed-off-by: Rami Rosen --- diff --git a/examples/tep_termination/main.c b/examples/tep_termination/main.c index 7795d08944..d6379e31e6 100644 --- a/examples/tep_termination/main.c +++ b/examples/tep_termination/main.c @@ -71,9 +71,6 @@ #define INVALID_PORT_ID 0xFFFF -/* Size of buffers used for snprintfs. */ -#define MAX_PRINT_BUFF 6072 - /* Maximum character device basename size. */ #define MAX_BASENAME_SZ 20