diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-04-04 08:30:43 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-04-04 08:30:43 +0200 |
| commit | 2ee27e39db4e1e23cf9e917b671c7581be90b699 (patch) | |
| tree | 14060c033b42e899711cf83eb7f3c229f600ec94 /src | |
| parent | 228d04d0e0d6e968c59bcab606e609eb1103f917 (diff) | |
Catch also Fl_Posix_System_Driver after rename stat -> flstat in Fl_System_Driver
Diffstat (limited to 'src')
| -rw-r--r-- | src/drivers/Posix/Fl_Posix_System_Driver.H | 2 |
1 files changed, 1 insertions, 1 deletions
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);} |
