1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-30 10:50:34 +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 ac21f47034
commit e807ead2f7

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;
}