chiark / gitweb /
Constify ConfigTableItem tables
[elogind.git] / src / network / networkd-network.c
index 0375194e46b822cfbf41ab9bfb9409b3eaeb06db..252c9a0ab0bd0db9d7fbb0bc504a82d82ba154fb 100644 (file)
@@ -93,8 +93,10 @@ static int network_load_one(Manager *manager, const char *filename) {
         network->dhcp_routes = true;
         network->dhcp_sendhost = true;
 
-        r = config_parse(NULL, filename, file, "Match\0Network\0Address\0Route\0DHCP\0DHCPv4\0", config_item_perf_lookup,
-                        (void*) network_network_gperf_lookup, false, false, network);
+        r = config_parse(NULL, filename, file,
+                         "Match\0Network\0Address\0Route\0DHCP\0DHCPv4\0",
+                         config_item_perf_lookup, network_network_gperf_lookup,
+                         false, false, network);
         if (r < 0) {
                 log_warning("Could not parse config file %s: %s", filename, strerror(-r));
                 return r;