1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-24 06:04:19 +03:00

Don't forget to set 64-bit arg values too.

This commit is contained in:
Alasdair Kergon 2003-10-15 20:05:30 +00:00
parent 9cbe906f60
commit 21d8060aea

View File

@ -122,6 +122,8 @@ static int _get_int_arg(struct arg *a, char **ptr)
a->i_value = (int32_t) v;
a->ui_value = (uint32_t) v;
a->i64_value = (int64_t) v;
a->ui64_value = (uint64_t) v;
return 1;
}