summaryrefslogtreecommitdiff
path: root/vlan.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-03-28 18:49:55 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-03-28 18:49:55 +0200
commit572963edb1875379a5187e5ec705c921bc622d21 (patch)
tree2256646fdeddc4bb354294b147aae13e8d22b4d2 /vlan.c
parentd2739dae56ee5ba6d8a89ea1822e82a9ed495b72 (diff)
downloadnetifd-572963edb1875379a5187e5ec705c921bc622d21.tar.gz
remove an unnecessary inline
Diffstat (limited to 'vlan.c')
-rw-r--r--vlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vlan.c b/vlan.c
index 3de1121..c417f75 100644
--- a/vlan.c
+++ b/vlan.c
@@ -105,7 +105,7 @@ static struct device *get_vlan_device(struct device *dev, int id, bool create)
return &vldev->dev;
}
-static inline char *split_vlan(char *s)
+static char *split_vlan(char *s)
{
s = strchr(s, '.');
if (!s)