1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

fix: 'Couldn't read extent size' --> '... extent start'

This commit is contained in:
Peter Rajnoha 2013-02-21 13:33:27 +01:00
parent 722ca363f0
commit a7d6a612b8

View File

@ -235,7 +235,8 @@ static int _read_pv(struct format_instance *fid,
} }
if (!_read_uint64(pvn, "pe_start", &pv->pe_start)) { if (!_read_uint64(pvn, "pe_start", &pv->pe_start)) {
log_error("Couldn't read extent size for physical volume."); log_error("Couldn't read extent start value (pe_start) "
"for physical volume.");
return 0; return 0;
} }