fallocate: remove unwanted debug message

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2018-07-04 13:34:56 +02:00
parent 3918998043
commit 7a287e63b9
1 changed files with 0 additions and 2 deletions

View File

@ -122,8 +122,6 @@ static void xfallocate(int fd, int mode, off_t offset, off_t length)
{
int error;
fprintf(stderr, "KZAK>>> %d\n", mode);
#ifdef HAVE_FALLOCATE
error = fallocate(fd, mode, offset, length);
#else