diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2014-11-28 19:13:53 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2014-11-28 19:17:24 +0100 |
commit | 8d3d7072e609ef0e0fb37e1d19a29307d58146c3 (patch) | |
tree | 96a7628cd8bbf315bd9ca55e87eb2dd3cb50e054 /src/machine/machine.c | |
parent | f647962d64e844689f3e2acfce6102fc47e76df2 (diff) |
treewide: a few more log_*_errno + return simplifications
The one in tmpfiles.c:create_item() even looks like it fixes a bug.
Diffstat (limited to 'src/machine/machine.c')
-rw-r--r-- | src/machine/machine.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/machine/machine.c b/src/machine/machine.c index 40189269e0..0d84213eea 100644 --- a/src/machine/machine.c +++ b/src/machine/machine.c @@ -259,8 +259,7 @@ int machine_load(Machine *m) { if (r == -ENOENT) return 0; - log_error_errno(r, "Failed to read %s: %m", m->state_file); - return r; + return log_error_errno(r, "Failed to read %s: %m", m->state_file); } if (id) |