From 79853c30c0f25a18fe82d93b424b0e8521a90c68 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 20 Sep 2011 12:54:06 -0700 Subject: [PATCH] Be sure to use STRUCT_STAT. --- syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syscall.c b/syscall.c index 6d51d3cb..e2b1394a 100644 --- a/syscall.c +++ b/syscall.c @@ -447,7 +447,7 @@ int do_fallocate(int fd, OFF_T offset, OFF_T length) int do_open_nofollow(const char *pathname, int flags) { #ifndef O_NOFOLLOW - struct stat f_st, l_st; + STRUCT_STAT f_st, l_st; #endif int fd; -- 2.47.2