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

Fix name in msg in last checkin.

(The problem the last checkin addressed was a segfault in 'pvs -a' if .cache
didn't contain every PV in a VG.)
This commit is contained in:
Alasdair Kergon 2010-09-22 01:50:38 +00:00
parent a171bb6e85
commit ec8a4dac46

View File

@ -46,7 +46,7 @@ static int _ignore_md(struct dev_filter *f __attribute__((unused)),
static void _destroy(struct dev_filter *f) static void _destroy(struct dev_filter *f)
{ {
if (f->use_count) if (f->use_count)
log_error(INTERNAL_ERROR "Destroying sysfs filter while in use %u times.", f->use_count); log_error(INTERNAL_ERROR "Destroying md filter while in use %u times.", f->use_count);
dm_free(f); dm_free(f);
} }