1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-07 17:17:44 +03:00

Merge pull request #1777 from torstehu/fix-typo2

core: fix typo
This commit is contained in:
Daniel Mack 2015-11-04 14:13:12 +01:00
commit 7b50251d69

View File

@ -1209,7 +1209,7 @@ static int write_container_id(void) {
r = write_string_file("/run/systemd/container", c, WRITE_STRING_FILE_CREATE);
if (r < 0)
return log_warning_errno(r, "Failed to write /run/systed/container, ignoring: %m");
return log_warning_errno(r, "Failed to write /run/systemd/container, ignoring: %m");
return 1;
}