mirror of
https://github.com/systemd/systemd.git
synced 2026-08-02 22:20:20 +00:00
sleep: don't log duplicate error
write_resume_config() logs error on its own.
This commit is contained in:
@@ -253,10 +253,8 @@ static int execute(
|
||||
return r;
|
||||
|
||||
r = write_resume_config(hibernation_device.devno, hibernation_device.offset, hibernation_device.path);
|
||||
if (r < 0) {
|
||||
log_error_errno(r, "Failed to write hibernation device to /sys/power/resume or /sys/power/resume_offset: %m");
|
||||
if (r < 0)
|
||||
goto fail;
|
||||
}
|
||||
}
|
||||
|
||||
r = write_mode(sleep_config->modes[operation]);
|
||||
|
||||
Reference in New Issue
Block a user