From: Lennart Poettering Date: Thu, 14 Jun 2018 12:53:59 +0000 (+0200) Subject: busctl: add 'const' where we can X-Git-Tag: v239~50^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02bf91ee295355f50db6ede09aabf2f57dcd8d63;p=thirdparty%2Fsystemd.git busctl: add 'const' where we can --- diff --git a/src/busctl/busctl.c b/src/busctl/busctl.c index b677ac0177a..1d719e0e78b 100644 --- a/src/busctl/busctl.c +++ b/src/busctl/busctl.c @@ -36,7 +36,7 @@ static bool arg_activatable = false; static bool arg_show_machine = false; static char **arg_matches = NULL; static BusTransport arg_transport = BUS_TRANSPORT_LOCAL; -static char *arg_host = NULL; +static const char *arg_host = NULL; static bool arg_user = false; static size_t arg_snaplen = 4096; static bool arg_list = false;