diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-04-30 01:29:00 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-04-30 01:29:00 +0200 |
commit | 1c2e9646e4a1720fc8ad35c705c195ae1a2c5ce0 (patch) | |
tree | 3d7f61210c0b45fb1f1fa61629c2b5825a0c43e9 /src/core/swap.c | |
parent | 524d896ac17518b824b2c94b3b0b2a23c23da08f (diff) |
core: simplify unit type detection logic
Introduce a new call unit_type_supported() and make use of it
everywhere.
Also, drop Manager parameter from per-type supported method prototype.
Diffstat (limited to 'src/core/swap.c')
-rw-r--r-- | src/core/swap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/swap.c b/src/core/swap.c index ae45b80967..a9834a7fe5 100644 --- a/src/core/swap.c +++ b/src/core/swap.c @@ -1407,7 +1407,7 @@ static int swap_get_timeout(Unit *u, uint64_t *timeout) { return 1; } -static bool swap_supported(Manager *m) { +static bool swap_supported(void) { static int supported = -1; /* If swap support is not available in the kernel, or we are |