diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-11-20 07:42:48 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-20 16:48:21 +0100 |
commit | 2428944eb04aa86529dcf6d6efb742abdb0a44cd (patch) | |
tree | d3efffe3b1347d7998d5b22529f2206c352c2e99 | |
parent | busctl: use static destructor and DEFINE_MAIN_FUNCTION() macro (diff) | |
download | systemd-2428944eb04aa86529dcf6d6efb742abdb0a44cd.tar.xz systemd-2428944eb04aa86529dcf6d6efb742abdb0a44cd.zip |
cgls: add const
-rw-r--r-- | src/cgls/cgls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgls/cgls.c b/src/cgls/cgls.c index 476641c481..aca7e9800c 100644 --- a/src/cgls/cgls.c +++ b/src/cgls/cgls.c @@ -34,7 +34,7 @@ static enum { static char **arg_names = NULL; static int arg_full = -1; -static char* arg_machine = NULL; +static const char* arg_machine = NULL; static int help(void) { _cleanup_free_ char *link = NULL; |