From 36f4e08de0c935a450d601bd2e5fa37906c1f081 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 10 Jul 2017 11:50:42 -0600 Subject: [PATCH] Fix a spelling error: return vs retrun --- net/ipforward/ipfwd_dropstats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipforward/ipfwd_dropstats.c b/net/ipforward/ipfwd_dropstats.c index 28d2f4cd87..469a95b8d9 100644 --- a/net/ipforward/ipfwd_dropstats.c +++ b/net/ipforward/ipfwd_dropstats.c @@ -90,7 +90,7 @@ static int proto_dropstats(int proto) #endif default: - retrun -EPROTONOSUPPORT; + return -EPROTONOSUPPORT; } return OK;