mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +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 -
|
||||
=================================
|
||||
Fix unrecognised segtype flag message.
|
||||
lvconvert reuse cachepool metadade now ONLY with -Zn and clear otherwise.
|
||||
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)
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user