From cd21d4d3e7d29f4761c98219bba485c02c04c479 Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Wed, 2 Oct 2019 13:39:59 -0700 Subject: [PATCH] netconfig: Fix return type for module init --- src/netconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netconfig.c b/src/netconfig.c index 90cd6bc2..0f99a7c4 100644 --- a/src/netconfig.c +++ b/src/netconfig.c @@ -1072,7 +1072,7 @@ static int netconfig_init(void) !enabled) { l_warn("netconfig: Network configuration with the IP addresses " "is disabled."); - return false; + return 0; } rtnl = l_netlink_new(NETLINK_ROUTE);