From: Marek Becka Date: Thu, 23 Jan 2014 18:02:56 +0000 (+0100) Subject: removed invalid space from macro definition X-Git-Tag: collectd-5.5.0~322^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F524%2Fhead;p=thirdparty%2Fcollectd.git removed invalid space from macro definition --- diff --git a/src/netlink.c b/src/netlink.c index 5e670d4ea..de2de9b51 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -310,10 +310,10 @@ static void check_ignorelist_and_submit (const char *dev, } /* void check_ignorelist_and_submit */ -#define COPY_RTNL_LINK_VALUE (dst_stats, src_stats, value_name) \ +#define COPY_RTNL_LINK_VALUE(dst_stats, src_stats, value_name) \ (dst_stats)->value_name = (src_stats)->value_name -#define COPY_RTNL_LINK_STATS (dst_stats, src_stats) \ +#define COPY_RTNL_LINK_STATS(dst_stats, src_stats) \ COPY_RTNL_LINK_VALUE (dst_stats, src_stats, rx_packets); \ COPY_RTNL_LINK_VALUE (dst_stats, src_stats, tx_packets); \ COPY_RTNL_LINK_VALUE (dst_stats, src_stats, rx_bytes); \