summaryrefslogtreecommitdiffstats
path: root/lib/label/label.h
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2006-05-09 21:23:51 +0000
committerAlasdair Kergon <agk@redhat.com>2006-05-09 21:23:51 +0000
commit72b2cb613a57918dadf9722c59a30ca71d751c8e (patch)
treeae0130e37b873591370abd65ff44cb2a554db049 /lib/label/label.h
parentb810c547004a98a7fc25c8dde65cf88d82ad9652 (diff)
downloadlvm2-72b2cb613a57918dadf9722c59a30ca71d751c8e.tar.gz
lvm2-72b2cb613a57918dadf9722c59a30ca71d751c8e.tar.xz
lvm2-72b2cb613a57918dadf9722c59a30ca71d751c8e.zip
Make SIZE_SHORT the default for display_size().
Fix some memory leaks in error paths found by coverity. Use C99 struct initialisers. Move DEFS into configure.h. Clean-ups to remove miscellaneous compiler warnings.
Diffstat (limited to 'lib/label/label.h')
-rw-r--r--lib/label/label.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/label/label.h b/lib/label/label.h
index 99f1164d..bff3be1d 100644
--- a/lib/label/label.h
+++ b/lib/label/label.h
@@ -28,11 +28,11 @@ struct labeller;
/* On disk - 32 bytes */
struct label_header {
- uint8_t id[8]; /* LABELONE */
+ int8_t id[8]; /* LABELONE */
uint64_t sector_xl; /* Sector number of this label */
uint32_t crc_xl; /* From next field to end of sector */
uint32_t offset_xl; /* Offset from start of struct to contents */
- uint8_t type[8]; /* LVM2 001 */
+ int8_t type[8]; /* LVM2 001 */
} __attribute__ ((packed));
/* In core */