From cdf2832347b8fdf0389cd373c2ead0ac5d071037 Mon Sep 17 00:00:00 2001 From: maxim nikonov Date: Thu, 5 Feb 2026 16:24:45 +0500 Subject: wip --- src/fl_utf8.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fl_utf8.cxx') 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 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) -- cgit v1.2.3