1
0
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:
Alasdair G Kergon 2016-07-25 12:56:25 +01:00
parent e4e29add68
commit 5397837a9f
2 changed files with 2 additions and 1 deletions

View File

@ -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.

View File

@ -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;
}