1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 10:25:13 +03:00

fix partition table signature size

This commit is contained in:
Alasdair Kergon 2004-11-26 14:40:34 +00:00
parent e3cca74ba5
commit 57b8df3e45
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
2.00.27-cvs (2004-11-24)
2.00.28-cvs (2004-11-26)

View File

@ -35,7 +35,7 @@ static int _is_partitionable(struct device *dev)
static int _has_partition_table(struct device *dev)
{
int ret = 0;
uint32_t part_magic;
uint16_t part_magic;
if (!dev_open(dev)) {
stack;