1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-30 06:25:37 +03:00

loop-util: drop unnecessary initializations

This commit is contained in:
Yu Watanabe 2022-09-05 02:57:49 +09:00
parent 1996ad2854
commit 9bf8600774

View File

@ -361,10 +361,10 @@ static int loop_device_make_internal(
_cleanup_free_ char *node = NULL;
bool try_loop_configure = true;
struct loop_config config;
LoopDevice *d = NULL;
LoopDevice *d;
uint64_t seqnum = UINT64_MAX;
usec_t timestamp = USEC_INFINITY;
int nr = -1, r, f_flags;
int nr, r, f_flags;
struct stat st;
assert(fd >= 0);