nspawn: voidify umount_verbose()

Fixes CID#1415122.
This commit is contained in:
Yu Watanabe 2020-01-31 23:10:26 +09:00
parent 02cec15629
commit 9610210d32
1 changed files with 1 additions and 1 deletions

View File

@ -906,7 +906,7 @@ static int mount_inaccessible(const char *dest, CustomMount *m) {
r = mount_verbose(m->graceful ? LOG_DEBUG : LOG_ERR, NULL, where, NULL, MS_BIND|MS_RDONLY|MS_REMOUNT, NULL);
if (r < 0) {
umount_verbose(where);
(void) umount_verbose(where);
return m->graceful ? 0 : r;
}