Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
jerboaa committed Oct 2, 2023
1 parent 070c413 commit 7aa251b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/java.base/unix/native/libnio/fs/UnixNativeDispatcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ typedef int lutimes_func(const char *, const struct timeval *);
typedef DIR* fdopendir_func(int);
#if defined(__linux__)
typedef int statx_func(int dirfd, const char *restrict pathname, int flags,
unsigned int mask, struct statx *restrict statxbuf);
unsigned int mask, struct statx *restrict statxbuf);
#endif

static openat64_func* my_openat64_func = NULL;
Expand Down Expand Up @@ -277,7 +277,8 @@ static int fstatat64_wrapper(int dfd, const char *path,

#if defined(__linux__)
static int statx_wrapper(int dirfd, const char *restrict pathname, int flags,
unsigned int mask, struct statx *restrict statxbuf, int follow_symlink) {
unsigned int mask, struct statx *restrict statxbuf,
int follow_symlink) {
if (follow_symlink == NO_FOLLOW_SYMLINK) {
flags |= AT_SYMLINK_NOFOLLOW;
}
Expand Down

0 comments on commit 7aa251b

Please sign in to comment.