umount: remove unneeded variable

This commit is contained in:
Lennart Poettering 2019-12-20 16:58:27 +01:00
parent 49f80dcec8
commit 610f9a42c4

View file

@ -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 */