From: Francois Gouget Subject: ntdll: Make fd_get_file_info() static. Message-Id: Date: Mon, 5 Jan 2015 19:28:53 +0100 (CET) --- dlls/ntdll/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c index 5232027..5751dca 100644 --- a/dlls/ntdll/file.c +++ b/dlls/ntdll/file.c @@ -118,7 +118,7 @@ static inline ULONG get_file_attributes( const struct stat *st ) } /* get the stat info and file attributes for a file (by file descriptor) */ -int fd_get_file_info( int fd, struct stat *st, ULONG *attr ) +static int fd_get_file_info( int fd, struct stat *st, ULONG *attr ) { int ret; -- 2.1.4