From 2ee27e39db4e1e23cf9e917b671c7581be90b699 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Mon, 4 Apr 2022 08:30:43 +0200 Subject: Catch also Fl_Posix_System_Driver after rename stat -> flstat in Fl_System_Driver --- src/drivers/Posix/Fl_Posix_System_Driver.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/Posix') diff --git a/src/drivers/Posix/Fl_Posix_System_Driver.H b/src/drivers/Posix/Fl_Posix_System_Driver.H index c0729894c..ec9439faa 100644 --- a/src/drivers/Posix/Fl_Posix_System_Driver.H +++ b/src/drivers/Posix/Fl_Posix_System_Driver.H @@ -57,7 +57,7 @@ public: virtual int execvp(const char *file, char *const *argv) {return ::execvp(file, argv);} virtual int chmod(const char* f, int mode) {return ::chmod(f, mode);} virtual int access(const char* f, int mode) { return ::access(f, mode);} - virtual int stat(const char* f, struct stat *b) { return ::stat(f, b);} + virtual int flstat(const char* f, struct stat *b) { return ::stat(f, b);} virtual char *getcwd(char* b, int l) {return ::getcwd(b, l);} virtual int chdir(const char* path) {return ::chdir(path);} virtual int unlink(const char* f) {return ::unlink(f);} -- cgit v1.2.3