summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/shutdown/umount.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/shutdown/umount.c b/src/shutdown/umount.c
index df339a994b..0b8044dacb 100644
--- a/src/shutdown/umount.c
+++ b/src/shutdown/umount.c
@@ -325,7 +325,6 @@ static int dm_list_get(MountPoint **head) {
static int delete_loopback(const char *device) {
_cleanup_close_ int fd = -1;
- int r;
assert(device);
@@ -333,8 +332,7 @@ static int delete_loopback(const char *device) {
if (fd < 0)
return errno == ENOENT ? 0 : -errno;
- r = ioctl(fd, LOOP_CLR_FD, 0);
- if (r >= 0)
+ if (ioctl(fd, LOOP_CLR_FD, 0) >= 0)
return 1;
/* ENXIO: not bound, so no error */