1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

cleanup: use first parameter uint

Easier with struct zeroing and matching assing of type uint.
This commit is contained in:
Zdenek Kabelac 2021-09-24 22:16:07 +02:00
parent 614d150a8c
commit 9668427fe8

View File

@ -18,9 +18,9 @@
#include <fcntl.h>
struct lvcreate_cmdline_params {
percent_type_t percent;
uint64_t size;
uint64_t virtual_size; /* snapshot, thin */
percent_type_t percent;
char **pvs;
uint32_t pv_count;
};