1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-17 06:04:23 +03:00

Use capital letters

This commit is contained in:
Zdenek Kabelac 2011-10-04 12:39:59 +00:00
parent 01ef6510b0
commit c0b9c64a77

View File

@ -553,13 +553,13 @@ int lvdisplay_full(struct cmd_context *cmd,
lv->vg->name, first_seg(lv)->pool_lv->name); lv->vg->name, first_seg(lv)->pool_lv->name);
} else if (lv_is_thin_pool(lv)) { } else if (lv_is_thin_pool(lv)) {
/* FIXME: display thin_pool targets transid for activated LV as well */ /* FIXME: display thin_pool targets transid for activated LV as well */
log_print("LV Thin transaction id %" PRIu64, log_print("LV Thin transaction ID %" PRIu64,
first_seg(lv)->transaction_id); first_seg(lv)->transaction_id);
log_print("LV Thin metadata %s%s/%s", lv->vg->cmd->dev_dir, log_print("LV Thin metadata %s%s/%s", lv->vg->cmd->dev_dir,
lv->vg->name, first_seg(lv)->pool_metadata_lv->name); lv->vg->name, first_seg(lv)->pool_metadata_lv->name);
log_print("LV Thin data pool %s%s/%s", lv->vg->cmd->dev_dir, log_print("LV Thin data pool %s%s/%s", lv->vg->cmd->dev_dir,
lv->vg->name, seg_lv(first_seg(lv), 0)->name); lv->vg->name, seg_lv(first_seg(lv), 0)->name);
log_print("LV zero new blocks %s", log_print("LV Zero new blocks %s",
first_seg(lv)->zero_new_blocks ? "yes" : "no"); first_seg(lv)->zero_new_blocks ? "yes" : "no");
} }