diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 16:24:45 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 16:24:45 +0500 |
| commit | cdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch) | |
| tree | 96f9771aed0710899aa6cbba2a84dadfe76e996e /src/fl_utf8.cxx | |
| parent | db214d1145e46d527a46d1fc2519548d2c4d23f1 (diff) | |
wip
Diffstat (limited to 'src/fl_utf8.cxx')
| -rw-r--r-- | src/fl_utf8.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fl_utf8.cxx b/src/fl_utf8.cxx index 7ba8102a5..c4d78b7db 100644 --- a/src/fl_utf8.cxx +++ b/src/fl_utf8.cxx @@ -70,7 +70,7 @@ static int Toupper(int ucs) { #include <FL/fl_utf8.h> bool test(const char *str) { - if (str == nullptr) return true; + if (str == 0) return true; const char *src = str; for (int p = 0; ; p++) { if (src == 0) return true; @@ -654,7 +654,7 @@ int fl_system(const char* cmd) \param[in] file path to the new process \param[in] argv array of command line arguments, last array member must - be a `nullptr`. + be a `0`. \return the result of `execvp` call. */ int fl_execvp(const char *file, char *const *argv) |
