From 0fc0ad7887b32886b50366c4b4556d42dc6d5472 Mon Sep 17 00:00:00 2001 From: Marek Becka Date: Thu, 23 Jan 2014 19:02:56 +0100 Subject: [PATCH] removed invalid space from macro definition --- src/netlink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netlink.c b/src/netlink.c index 5e670d4e..de2de9b5 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); \ -- 2.11.0