From e285ecec333e3b55e91ff68612d6c3b1d5258799 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 4 Nov 2017 11:44:00 +0000 Subject: [PATCH] slip: fix build bug --- Applications/netd/slip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/netd/slip.c b/Applications/netd/slip.c index ed8b425c..985ad848 100644 --- a/Applications/netd/slip.c +++ b/Applications/netd/slip.c @@ -114,7 +114,7 @@ static int slip_recv( unsigned char *b, int len ) /* send packet to net device */ int device_send( char *sbuf, int len ) { - sbuf += 14 /* Don't send a mac header */ + sbuf += 14; /* Don't send a mac header */ slip_begin(); while(len--) slip_out(*sbuf++); -- 2.34.1