[PATCH] drivers/net/slip: Add space after that ','
From: hanyu001
Date: Fri Jul 14 2023 - 04:05:09 EST
Fix Error reported by checkpatch.pl
./drivers/net/slip/slhc.c:381: ERROR: space required after that ','
(ctx:VxV)
Signed-off-by: maqimei <2433033762@xxxxxx>
---
drivers/net/slip/slhc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/slip/slhc.c b/drivers/net/slip/slhc.c
index befdf4a..cf0245a 100644
--- a/drivers/net/slip/slhc.c
+++ b/drivers/net/slip/slhc.c
@@ -378,7 +378,7 @@ struct slcompress *
goto uncompressed;
}
if((deltaS = ntohs(th->window) - ntohs(oth->window)) != 0){
- cp = encode(cp,deltaS);
+ cp = encode(cp, deltaS);
changes |= NEW_W;
}
if((deltaA = ntohl(th->ack_seq) - ntohl(oth->ack_seq)) != 0L){