From: Gabriel Ganne Date: Mon, 6 Nov 2017 15:52:24 +0000 (+0100) Subject: fix bfd cli with gcc >= 6 X-Git-Tag: v18.04-rc0~326 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=bfc29ba442dbb65599f29fe5aa44c6219ed0d3a8;p=vpp.git fix bfd cli with gcc >= 6 Change-Id: Iff63238bcf87db3411493e95064c5ad3ed8fd166 Signed-off-by: Gabriel Ganne --- diff --git a/src/vnet/bfd/bfd_cli.c b/src/vnet/bfd/bfd_cli.c index b2cd8df2eea..a533bb74ea5 100644 --- a/src/vnet/bfd/bfd_cli.c +++ b/src/vnet/bfd/bfd_cli.c @@ -397,8 +397,8 @@ static const unsigned optional = 0; #define CHECK_MANDATORY(t, n, s, r, ...) \ PRAGMA_STR1 \ if (mandatory == r && !have_##n) \ - PRAGMA_STR2 \ { \ + PRAGMA_STR2 \ ret = clib_error_return (0, "Required parameter `%s' missing.", s); \ goto out; \ }