From cf012d1b347ec001d294e63d911be43b3f5e9627 Mon Sep 17 00:00:00 2001 From: Jesse Gross Date: Tue, 9 Jul 2013 14:43:47 -0700 Subject: [PATCH] datapath: Fix Netlink error message header. CC: Andy Zhou Signed-off-by: Jesse Gross --- datapath/datapath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath/datapath.h b/datapath/datapath.h index d14a16214..eda87fdd3 100644 --- a/datapath/datapath.h +++ b/datapath/datapath.h @@ -206,6 +206,6 @@ int ovs_execute_actions(struct datapath *dp, struct sk_buff *skb); void ovs_dp_notify_wq(struct work_struct *work); #define OVS_NLERR(fmt, ...) \ - pr_info_once(fmt "netlink: ", ##__VA_ARGS__) + pr_info_once("netlink: " fmt, ##__VA_ARGS__) #endif /* datapath.h */ -- 2.20.1