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

Fix an error fprintf.

This commit is contained in:
Alasdair Kergon 2004-12-22 21:47:31 +00:00
parent bc0d0ce072
commit 01a0beedce
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
Version 2.00.32 -
Version 2.00.32 - 22nd December 2004
====================================
Fix an error fprintf.
Fix vgdisplay -s. Breaks (undocumented) lvs/pvs/vgs -s instead for now.
Fix device reference counting on re-opens.
Ignore sysfs symlinks when DT_UNKNOWN.

View File

@ -989,7 +989,7 @@ static void _close_stray_fds(void)
if (!close(fd))
fprintf(stderr, "File descriptor %d left open\n", fd);
else if (errno != EBADF)
fprintf(stderr, "Close failed on stray file ",
fprintf(stderr, "Close failed on stray file "
"descriptor %d: %s\n", fd, strerror(errno));
}
}