From: Alasdair Kergon Date: Fri, 26 Nov 2004 14:40:34 +0000 (+0000) Subject: fix partition table signature size X-Git-Tag: v2_02_91~5047 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=57b8df3e45919524aec2e91a19b6347024e15c90;p=lvm2.git fix partition table signature size --- diff --git a/VERSION b/VERSION index 1a0018cfb..99d8e801a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.00.27-cvs (2004-11-24) +2.00.28-cvs (2004-11-26) diff --git a/lib/device/device.c b/lib/device/device.c index d21e866bf..9879510b9 100644 --- a/lib/device/device.c +++ b/lib/device/device.c @@ -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;