mirror of
git://sourceware.org/git/lvm2.git
synced 2025-03-10 16:58:47 +03:00
segtype: Fix unrecognised flag message.
Show in hex not decimal.
This commit is contained in:
parent
e4e29add68
commit
5397837a9f
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.162 -
|
Version 2.02.162 -
|
||||||
=================================
|
=================================
|
||||||
|
Fix unrecognised segtype flag message.
|
||||||
lvconvert reuse cachepool metadade now ONLY with -Zn and clear otherwise.
|
lvconvert reuse cachepool metadade now ONLY with -Zn and clear otherwise.
|
||||||
Enabled lvconvert --uncache to work with partial VG.
|
Enabled lvconvert --uncache to work with partial VG.
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ struct segment_type *get_segtype_from_flag(struct cmd_context *cmd, uint64_t fla
|
|||||||
if (flag & segtype->flags)
|
if (flag & segtype->flags)
|
||||||
return segtype;
|
return segtype;
|
||||||
|
|
||||||
log_error(INTERNAL_ERROR "Unrecognised segment type flag 0x%" PRIu64, flag);
|
log_error(INTERNAL_ERROR "Unrecognised segment type flag 0x%" PRIx64, flag);
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user