From: Yu Watanabe Date: Wed, 18 Sep 2024 16:06:59 +0000 (+0900) Subject: varlinkctl: make sd_json_dispatch_field table static X-Git-Tag: v257-rc1~399^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=751a247794b53a9d6f953750fe20986dca0e9be1;p=thirdparty%2Fsystemd.git varlinkctl: make sd_json_dispatch_field table static --- diff --git a/src/varlinkctl/varlinkctl.c b/src/varlinkctl/varlinkctl.c index 481a41208ef..662a6add4b4 100644 --- a/src/varlinkctl/varlinkctl.c +++ b/src/varlinkctl/varlinkctl.c @@ -380,12 +380,12 @@ static int verb_introspect(int argc, char *argv[], void *userdata) { if (r < 0) return r; - const struct sd_json_dispatch_field dispatch_table[] = { - { "interfaces", SD_JSON_VARIANT_ARRAY, sd_json_dispatch_strv, PTR_TO_SIZE(&auto_interfaces), SD_JSON_MANDATORY }, + static const sd_json_dispatch_field dispatch_table[] = { + { "interfaces", SD_JSON_VARIANT_ARRAY, sd_json_dispatch_strv, 0, SD_JSON_MANDATORY }, {} }; - r = sd_json_dispatch(reply, dispatch_table, SD_JSON_LOG|SD_JSON_ALLOW_EXTENSIONS, NULL); + r = sd_json_dispatch(reply, dispatch_table, SD_JSON_LOG|SD_JSON_ALLOW_EXTENSIONS, &auto_interfaces); if (r < 0) return r;