summaryrefslogtreecommitdiff
path: root/net-misc/vde/files/vde-2.3.2-fix-inline-funcs-r1.patch
blob: c1329d0f720793e4702bd656db2f1c286bdca3fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Sourced from https://raw.githubusercontent.com/OpenMandrivaAssociation/vde2/master/vd2-2.3.2-clang.patch

--- a/src/vde_switch/fstp.c	2014-10-29 22:54:18.659988435 +0000
+++ b/src/vde_switch/fstp.c	2014-10-29 22:54:44.912986501 +0000
@@ -30,14 +30,14 @@
 #ifdef FSTP
 #include <fstp.h>
 /*********************** sending macro used by FSTP & Core ******************/
-void inline ltonstring(unsigned long l,unsigned char *s) {
+void ltonstring(unsigned long l,unsigned char *s) {
 	s[3]=l; l>>=8;
 	s[2]=l; l>>=8;
 	s[1]=l; l>>=8;
 	s[0]=l;
 }
 
-unsigned long inline nstringtol(unsigned char *s) {
+unsigned long nstringtol(unsigned char *s) {
 	return (s[0]<<24)+(s[1]<<16)+(s[2]<<8)+s[3];
 }