diff options
-rw-r--r-- | src/core/swap.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/swap.c b/src/core/swap.c index bb1398f688..6b1bdb5c1e 100644 --- a/src/core/swap.c +++ b/src/core/swap.c @@ -724,8 +724,12 @@ static void swap_enter_activating(Swap *s) { NULL, &discard, NULL); priority = s->parameters_fragment.priority; - if (priority < 0) - fstab_find_pri(s->parameters_fragment.options, &priority); + if (priority < 0) { + r = fstab_find_pri(s->parameters_fragment.options, &priority); + if (r < 0) + log_notice_errno(r, "Failed to parse swap priority \"%s\", ignoring: %m", + s->parameters_fragment.options); + } } r = exec_command_set(s->control_command, "/sbin/swapon", NULL); |