]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
fallocate: remove unwanted debug message
authorKarel Zak <kzak@redhat.com>
Wed, 4 Jul 2018 11:34:56 +0000 (13:34 +0200)
committerKarel Zak <kzak@redhat.com>
Wed, 4 Jul 2018 11:37:06 +0000 (13:37 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
sys-utils/fallocate.c

index c97e63d4b33c1351ebc03a771bd9d9473936be6f..48a1b2793fd60ab92ee7658068f84617ff56639f 100644 (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