1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-23 17:34:00 +03:00

load-fragment: fix a typo

Correct the typo of “priority” in log message
This commit is contained in:
ExtinctFire 2020-05-20 16:39:09 +08:00 committed by Lennart Poettering
parent 550c8784c5
commit 929fed02df

View File

@ -5157,7 +5157,7 @@ int config_parse_swap_priority(
r = safe_atoi(rvalue, &priority);
if (r < 0) {
log_syntax(unit, LOG_ERR, filename, line, r, "Invalid swap pririty '%s', ignoring.", rvalue);
log_syntax(unit, LOG_ERR, filename, line, r, "Invalid swap priority '%s', ignoring.", rvalue);
return 0;
}