Remove references to 64-bit file functions - stat, lstat, lseek, etc - as part of large file support rewrite.

This commit is contained in:
Andrew Wood
2023-07-22 19:55:55 +01:00
parent 5cf5eda406
commit 101294195b
7 changed files with 184 additions and 189 deletions
+2 -2
View File
@@ -233,8 +233,8 @@ struct pvwatchfd_s {
#endif
char file_fdpath[4096]; /* path to file that was opened */
char display_name[512]; /* name to show on progress bar */
struct stat64 sb_fd; /* stat of fd symlink */
struct stat64 sb_fd_link; /* lstat of fd symlink */
struct stat sb_fd; /* stat of fd symlink */
struct stat sb_fd_link; /* lstat of fd symlink */
unsigned long long size; /* size of whole file, 0 if unknown */
long long position; /* position last seen at */
struct timeval start_time; /* time we started watching the fd */