diff options
author | Mike Yuan <me@yhndnzj.com> | 2023-10-23 15:02:25 +0200 |
---|---|---|
committer | Mike Yuan <me@yhndnzj.com> | 2023-10-23 17:12:27 +0200 |
commit | a3f7047f00d2d283278b2d5448468596cfeea6ac (patch) | |
tree | 093774d4ee8e2ca7485d6e32d43b6dbba2a17b41 /src/hibernate-resume | |
parent | timedatectl: add missing commands to the help output (diff) | |
download | systemd-a3f7047f00d2d283278b2d5448468596cfeea6ac.tar.xz systemd-a3f7047f00d2d283278b2d5448468596cfeea6ac.zip |
hibernate-resume: add missing static for arg_info
Diffstat (limited to 'src/hibernate-resume')
-rw-r--r-- | src/hibernate-resume/hibernate-resume.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hibernate-resume/hibernate-resume.c b/src/hibernate-resume/hibernate-resume.c index 48225201ed..9d81332f26 100644 --- a/src/hibernate-resume/hibernate-resume.c +++ b/src/hibernate-resume/hibernate-resume.c @@ -12,7 +12,7 @@ #include "parse-util.h" #include "static-destruct.h" -HibernateInfo arg_info = {}; +static HibernateInfo arg_info = {}; STATIC_DESTRUCTOR_REGISTER(arg_info, hibernate_info_done); |