Module: wine Branch: master Commit: 4827ae13928259b22e48765be3f14aef5bc26146 URL: https://gitlab.winehq.org/wine/wine/-/commit/4827ae13928259b22e48765be3f14ae...
Author: Zebediah Figura zfigura@codeweavers.com Date: Wed Jan 18 19:56:02 2023 -0600
ntdll: Make fd_set_file_info() static.
---
dlls/ntdll/unix/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ntdll/unix/file.c b/dlls/ntdll/unix/file.c index 957d9f3b801..981b0c57b35 100644 --- a/dlls/ntdll/unix/file.c +++ b/dlls/ntdll/unix/file.c @@ -1618,7 +1618,7 @@ static int fd_set_dos_attrib( int fd, UINT attr )
/* set the stat info and file attributes for a file (by file descriptor) */ -NTSTATUS fd_set_file_info( int fd, UINT attr ) +static NTSTATUS fd_set_file_info( int fd, UINT attr ) { struct stat st;