mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
A missing space in the error message.
Add missing parentheses to an error message Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
This commit is contained in:
parent
71cb54406a
commit
655849fb14
@ -1,5 +1,6 @@
|
||||
Version 2.02.63 -
|
||||
================================
|
||||
Fix two messages, add a whitespace and parentheses
|
||||
When dmeventd is not forking because of -d flag, don't kill the parent process
|
||||
Fix 'make install' when $(builddir) is different from $(srcdir).
|
||||
Fix dso resource leak in error path of dmeventd.
|
||||
|
@ -233,7 +233,7 @@ int check_lv_segments(struct logical_volume *lv, int complete_vg)
|
||||
}
|
||||
if (!seg_found) {
|
||||
log_error("LV segment %s:%" PRIu32 "-%" PRIu32
|
||||
"is incorrectly listed as being used by LV %s",
|
||||
" is incorrectly listed as being used by LV %s",
|
||||
seg->lv->name, seg->le, seg->le + seg->len - 1,
|
||||
lv->name);
|
||||
r = 0;
|
||||
|
@ -2207,7 +2207,7 @@ int vg_validate(struct volume_group *vg)
|
||||
if (((uint32_t) dm_list_size(&vg->lvs)) !=
|
||||
vg_visible_lvs(vg) + snapshot_count(vg) + hidden_lv_count) {
|
||||
log_error(INTERNAL_ERROR "#internal LVs (%u) != #LVs (%"
|
||||
PRIu32 ") + #snapshots (%" PRIu32 ") + #internal LVs %u in VG %s",
|
||||
PRIu32 ") + #snapshots (%" PRIu32 ") + #internal LVs (%u) in VG %s",
|
||||
dm_list_size(&vg->lvs), vg_visible_lvs(vg),
|
||||
snapshot_count(vg), hidden_lv_count, vg->name);
|
||||
r = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user