From: Karel Zak Date: Wed, 4 Jul 2018 11:34:56 +0000 (+0200) Subject: fallocate: remove unwanted debug message X-Git-Tag: v2.33-rc1~145 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7a287e63b903c05b53fd7bd0ddc4e80a7ac4bc49;p=thirdparty%2Futil-linux.git fallocate: remove unwanted debug message Signed-off-by: Karel Zak --- diff --git a/sys-utils/fallocate.c b/sys-utils/fallocate.c index c97e63d4b3..48a1b2793f 100644 --- a/sys-utils/fallocate.c +++ b/sys-utils/fallocate.c @@ -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