diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-02-13 12:28:28 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-02-13 12:28:28 +0100 |
commit | dd422d1e5b6a62bc634ae22d0627f70d4900814b (patch) | |
tree | 6772b1bb6db5cfc788339f4fe397c1ec3fd305e0 /src/rc-local-generator | |
parent | 1d9b8e58340e0fdc77158f04c36f5e6736754259 (diff) |
tree-wide: make more global variables static
let's export as little as we can
Diffstat (limited to 'src/rc-local-generator')
-rw-r--r-- | src/rc-local-generator/rc-local-generator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc-local-generator/rc-local-generator.c b/src/rc-local-generator/rc-local-generator.c index 9e9c161993..618bbe428d 100644 --- a/src/rc-local-generator/rc-local-generator.c +++ b/src/rc-local-generator/rc-local-generator.c @@ -36,7 +36,7 @@ #define RC_LOCAL_SCRIPT_PATH_STOP "/sbin/halt.local" #endif -const char *arg_dest = "/tmp"; +static const char *arg_dest = "/tmp"; static int add_symlink(const char *service, const char *where) { _cleanup_free_ char *from = NULL, *to = NULL; |