diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-28 18:49:55 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-28 18:49:55 +0200 |
commit | 572963edb1875379a5187e5ec705c921bc622d21 (patch) | |
tree | 2256646fdeddc4bb354294b147aae13e8d22b4d2 | |
parent | d2739dae56ee5ba6d8a89ea1822e82a9ed495b72 (diff) |
remove an unnecessary inline
-rw-r--r-- | vlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |