diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-10-05 15:04:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-05 15:04:19 +0200 |
commit | 892a035c2eb8ae8c1e8bd442cd37eed2db03741a (patch) | |
tree | 89c25830ae779e5a0a0c419e3311e925056310fa /src/core/manager.h | |
parent | seccomp: remove 'gettid' syscall from '@process' syscall set (#6989) (diff) | |
download | systemd-892a035c2eb8ae8c1e8bd442cd37eed2db03741a.tar.xz systemd-892a035c2eb8ae8c1e8bd442cd37eed2db03741a.zip |
core: make gc_marker unsigned (#7004)
This matches the definition in unit.h.
Diffstat (limited to '')
-rw-r--r-- | src/core/manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/manager.h b/src/core/manager.h index ff73fb3e85..6fff7b2437 100644 --- a/src/core/manager.h +++ b/src/core/manager.h @@ -244,7 +244,7 @@ struct Manager { * file system */ int pin_cgroupfs_fd; - int gc_marker; + unsigned gc_marker; /* Flags */ ManagerExitCode exit_code:5; |