From: Florian Westphal Date: Mon, 7 Sep 2015 13:56:15 +0000 (+0200) Subject: src: fix build with debug off X-Git-Tag: v0.5~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff6f6957564f900298d9f493a5a15816e9e165ac;p=thirdparty%2Fnftables.git src: fix build with debug off mnl.c:241:1: error: expected identifier or '(' before '}' token Signed-off-by: Florian Westphal --- diff --git a/src/mnl.c b/src/mnl.c index 76a97140..cdceae67 100644 --- a/src/mnl.c +++ b/src/mnl.c @@ -234,8 +234,8 @@ static ssize_t mnl_nft_socket_sendmsg(const struct mnl_socket *nl) iov[i].iov_base, iov[i].iov_len, sizeof(struct nfgenmsg)); } -#endif } +#endif return sendmsg(mnl_socket_get_fd(nl), &msg, 0); }