about summary refs log tree commit diff
path: root/support/support_copy_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/support_copy_file.c')
-rw-r--r--support/support_copy_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/support_copy_file.c b/support/support_copy_file.c
index 50ff87b9f1..f3e0a2d1b7 100644
--- a/support/support_copy_file.c
+++ b/support/support_copy_file.c
@@ -24,7 +24,7 @@
 void
 support_copy_file (const char *from, const char *to)
 {
-  struct stat64 st;
+  struct stat st;
   xstat (from, &st);
   int fd_from = xopen (from, O_RDONLY, 0);
   mode_t mode = st.st_mode & 0777;