diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-09-18 17:25:12 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2023-09-19 01:37:01 +0200 |
commit | 6b664070804bee8a3c50e00e0707ef5c481e08b9 (patch) | |
tree | cfdab8aab4db8fac41f119235aa3897ff86f8d6d /src/path/path.c | |
parent | Merge pull request #29186 from keszybz/man-notifications-and-fd-store (diff) | |
download | systemd-6b664070804bee8a3c50e00e0707ef5c481e08b9.tar.xz systemd-6b664070804bee8a3c50e00e0707ef5c481e08b9.zip |
path: make arg_pager_flags static
Follow-up for: e441d1d46e8cd640ffac9d9231e5b16852fd9c28
Diffstat (limited to '')
-rw-r--r-- | src/path/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path/path.c b/src/path/path.c index 9845425d01..1e69c6a355 100644 --- a/src/path/path.c +++ b/src/path/path.c @@ -17,7 +17,7 @@ #include "string-util.h" static const char *arg_suffix = NULL; -PagerFlags arg_pager_flags = 0; +static PagerFlags arg_pager_flags = 0; static const char* const path_table[_SD_PATH_MAX] = { [SD_PATH_TEMPORARY] = "temporary", |