From: Rami Rosen Date: Sat, 25 Aug 2018 19:22:40 +0000 (+0300) Subject: examples/vhost: remove unnecessary constant X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b24ec9bc1c43f7cada0b16709043f84f52f2b895;p=dpdk.git examples/vhost: remove unnecessary constant This patch removes an unnecessary definition of MAX_PRINT_BUFF in examples/vhost/main.c, since it is no longer being used. Fixes: 68363d85857d ("examples/vhost: remove the non-working zero copy code") Cc: stable@dpdk.org Signed-off-by: Rami Rosen Reviewed-by: Tiwei Bie --- diff --git a/examples/vhost/main.c b/examples/vhost/main.c index 2175c11864..5d28d03f63 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c @@ -58,9 +58,6 @@ /* Max number of devices. Limited by vmdq. */ #define MAX_DEVICES 64 -/* Size of buffers used for snprintfs. */ -#define MAX_PRINT_BUFF 6072 - /* Maximum long option length for option parsing. */ #define MAX_LONG_OPT_SZ 64