diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-15 21:03:11 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-15 22:34:40 -0400 |
commit | e9f3d2d508bfd9fb5b54e82994bda365a71eb864 (patch) | |
tree | 5cbc33e5f3b497641e5c8818ced20feb8c94780b /src/udev | |
parent | 8201af08fa09c2bd0f005fbe262f27e2c5bd2d86 (diff) |
Constify ConfigTableItem tables
Diffstat (limited to 'src/udev')
-rw-r--r-- | src/udev/net/link-config.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c index 5a45c53cc6..fe916a4326 100644 --- a/src/udev/net/link-config.c +++ b/src/udev/net/link-config.c @@ -174,8 +174,10 @@ static int load_link(link_config_ctx *ctx, const char *filename) { link->wol = _WOL_INVALID; link->duplex = _DUP_INVALID; - r = config_parse(NULL, filename, file, "Match\0Link\0Ethernet\0", config_item_perf_lookup, - (void*) link_config_gperf_lookup, false, false, link); + r = config_parse(NULL, filename, file, + "Match\0Link\0Ethernet\0", + config_item_perf_lookup, link_config_gperf_lookup, + false, false, link); if (r < 0) { log_warning("Could not parse config file %s: %s", filename, strerror(-r)); return r; |