mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 15:41:51 +01:00
22 lines
642 B
Diff
22 lines
642 B
Diff
diff --git a/src/vde_switch/fstp.c b/src/vde_switch/fstp.c
|
|
index ac5e313..26c5a67 100644
|
|
--- a/src/vde_switch/fstp.c
|
|
+++ b/src/vde_switch/fstp.c
|
|
@@ -30,14 +30,14 @@ static int numports;
|
|
#ifdef FSTP
|
|
#include <fstp.h>
|
|
/*********************** sending macro used by FSTP & Core ******************/
|
|
-void inline ltonstring(unsigned long l,unsigned char *s) {
|
|
+static 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) {
|
|
+static unsigned long nstringtol(unsigned char *s) {
|
|
return (s[0]<<24)+(s[1]<<16)+(s[2]<<8)+s[3];
|
|
}
|
|
|