From: Corinna Vinschen Date: Tue, 5 Dec 2023 21:11:18 +0000 (+0100) Subject: Cygwin: fallocate(2): fix debug output X-Git-Tag: newlib-4.4.0~34 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=0737bda6ff5a104963c49f389ec102eaf8c5dd24;p=newlib-cygwin.git Cygwin: fallocate(2): fix debug output Fixes: e01c50c7b0a6 ("Cygwin: introduce fallocate(2)") Signed-off-by: Corinna Vinschen --- diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc index b6aeb47c8..486db1db6 100644 --- a/winsup/cygwin/syscalls.cc +++ b/winsup/cygwin/syscalls.cc @@ -3024,7 +3024,7 @@ fallocate (int fd, int mode, off_t offset, off_t len) set_errno (res); res = -1; } - syscall_printf ("%R = posix_fallocate(%d, %D, %D)", res, fd, offset, len); + syscall_printf ("%R = fallocate(%d, %y, %D, %D)", res, fd, mode, offset, len); return res; }