1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-08 11:27:32 +03:00

pager: minor simplification

This commit is contained in:
Lennart Poettering 2015-09-24 12:42:30 +02:00
parent 2cc7b0a25f
commit 65359589c2

View File

@ -74,9 +74,8 @@ int pager_open(bool jump_to_end) {
pager_pid = fork(); pager_pid = fork();
if (pager_pid < 0) { if (pager_pid < 0) {
r = log_error_errno(errno, "Failed to fork pager: %m");
safe_close_pair(fd); safe_close_pair(fd);
return r; return log_error_errno(errno, "Failed to fork pager: %m");
} }
/* In the child start the pager */ /* In the child start the pager */