diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-03-22 08:16:56 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-03-22 08:16:56 +0100 |
| commit | 6cc394a39eb4537927bc7d4d7d5959f5d23a9761 (patch) | |
| tree | ba1cf80a24350e57fd77d554349d070fc2739f01 /src/Fl_System_Driver.cxx | |
| parent | ffbc66321c9e69f57c8095f2d4b6e6f9b1b8241e (diff) | |
| parent | f1b00c6637ad5752fa70eb1a8c1ac8ba274210f7 (diff) | |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'src/Fl_System_Driver.cxx')
| -rw-r--r-- | src/Fl_System_Driver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_System_Driver.cxx b/src/Fl_System_Driver.cxx index f207ed8b8..143585b72 100644 --- a/src/Fl_System_Driver.cxx +++ b/src/Fl_System_Driver.cxx @@ -406,11 +406,11 @@ int Fl_System_Driver::clocale_printf(FILE *output, const char *format, va_list a } int Fl_System_Driver::clocale_snprintf(char *output, size_t output_size, const char *format, va_list args) { - return vsnprintf(output, output_size, format, args); + return 0; // overridden in platform drivers } int Fl_System_Driver::clocale_sscanf(const char *input, const char *format, va_list args) { - return vsscanf(input, format, args); + return 0; // overridden in platform drivers } int Fl_System_Driver::filename_expand(char *to,int tolen, const char *from) { |
