mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-18 10:04:20 +03:00
Fix an error fprintf.
This commit is contained in:
parent
bc0d0ce072
commit
01a0beedce
@ -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 vgdisplay -s. Breaks (undocumented) lvs/pvs/vgs -s instead for now.
|
||||||
Fix device reference counting on re-opens.
|
Fix device reference counting on re-opens.
|
||||||
Ignore sysfs symlinks when DT_UNKNOWN.
|
Ignore sysfs symlinks when DT_UNKNOWN.
|
||||||
|
@ -989,7 +989,7 @@ static void _close_stray_fds(void)
|
|||||||
if (!close(fd))
|
if (!close(fd))
|
||||||
fprintf(stderr, "File descriptor %d left open\n", fd);
|
fprintf(stderr, "File descriptor %d left open\n", fd);
|
||||||
else if (errno != EBADF)
|
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));
|
"descriptor %d: %s\n", fd, strerror(errno));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user