Blame SOURCES/open-iscsi-2.0.875-11-Declare-inline-best_match_bufcmp-as-static.patch

e88930
From ec9865c5b2a05908dff774eda352d84d6a001e1a Mon Sep 17 00:00:00 2001
e88930
From: Lee Duncan <lduncan@suse.com>
e88930
Date: Sat, 2 Dec 2017 14:24:52 -0800
e88930
Subject: [PATCH] Declare inline best_match_bufcmp() as static.
e88930
e88930
The 7.2.1 version of gcc seems to be more strict
e88930
about this.  See https://gcc.gnu.org/onlinedocs/gcc/Inline.html
e88930
---
e88930
 iscsiuio/src/uip/ipv6.c | 2 +-
e88930
 1 file changed, 1 insertion(+), 1 deletion(-)
e88930
e88930
diff --git a/iscsiuio/src/uip/ipv6.c b/iscsiuio/src/uip/ipv6.c
e88930
index ced98a678899..05efa73fcfdd 100644
e88930
--- a/iscsiuio/src/uip/ipv6.c
e88930
+++ b/iscsiuio/src/uip/ipv6.c
e88930
@@ -49,7 +49,7 @@
e88930
 #include "dhcpv6.h"
e88930
 #include "ping.h"
e88930
 
e88930
-inline int best_match_bufcmp(u8_t *a, u8_t *b, int len)
e88930
+static inline int best_match_bufcmp(u8_t *a, u8_t *b, int len)
e88930
 {
e88930
 	int i;
e88930
 
e88930
-- 
e88930
2.17.2
e88930