aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2018-06-29 05:36:06 +0200
committerJo-Philipp Wich <jo@mein.io>2018-12-18 09:44:02 +0100
commite89126d5d2dc14b41f3029c3d58c51e242273f9c (patch)
tree7c89de77015641e31867ca32c6e0ae159a9babe0 /package
parentc388a92d61af07957a79212e6cb274a96a576f0b (diff)
downloadupstream-e89126d5d2dc14b41f3029c3d58c51e242273f9c.tar.gz
upstream-e89126d5d2dc14b41f3029c3d58c51e242273f9c.tar.bz2
upstream-e89126d5d2dc14b41f3029c3d58c51e242273f9c.zip
swconfig: swlib_map_settings(): change return type to void
The return value of the function isn't used anywhere. Fixes missing return value, CID 1329717. Found-by: Coverity Signed-off-by: Alexander Couzens <lynxis@fe80.eu> (backported from b06c447c5f66fd13078327bda3d885d48e2c0e42)
Diffstat (limited to 'package')
-rw-r--r--package/network/config/swconfig/src/uci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/swconfig/src/uci.c b/package/network/config/swconfig/src/uci.c
index bf76bd3de1..f99583b483 100644
--- a/package/network/config/swconfig/src/uci.c
+++ b/package/network/config/swconfig/src/uci.c
@@ -59,7 +59,7 @@ static bool swlib_match_name(struct switch_dev *dev, const char *name)
strcmp(name, dev->alias) == 0);
}
-static int
+static void
swlib_map_settings(struct switch_dev *dev, int type, int port_vlan, struct uci_section *s)
{
struct swlib_setting *setting;