1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cov: explicitely ignore return value

This commit is contained in:
Zdenek Kabelac 2021-04-22 16:49:34 +02:00
parent 2b3dcd754f
commit 395ce6c2bb
3 changed files with 5 additions and 5 deletions

View File

@ -4968,7 +4968,7 @@ static void *client_thread_main(void *arg_in)
}
out:
if (adopt_opt && lock_acquire_written)
unlink(adopt_file);
(void) unlink(adopt_file);
return NULL;
}
@ -5740,13 +5740,13 @@ static void adopt_locks(void)
if (count_start_fail || count_adopt_fail)
goto fail;
unlink(adopt_file);
(void) unlink(adopt_file);
write_adopt_file();
log_debug("adopt_locks done");
return;
fail:
unlink(adopt_file);
(void) unlink(adopt_file);
log_error("adopt_locks failed, reset host");
}

View File

@ -679,7 +679,7 @@ int device_ids_write(struct cmd_context *cmd)
goto out;
}
unlink(tmppath); /* in case a previous file was left */
(void) unlink(tmppath); /* in case a previous file was left */
if (!(fp = fopen(tmppath, "w+"))) {
log_warn("Cannot open tmp devices_file to write.");

View File

@ -1657,7 +1657,7 @@ bool dev_write_bytes(struct device *dev, uint64_t start, size_t len, void *data)
_scan_dev_close(dev);
dev->flags |= DEV_BCACHE_WRITE;
label_scan_open(dev);
(void) label_scan_open(dev); /* checked later */
}
if (dev->bcache_di < 0) {