summaryrefslogtreecommitdiff
path: root/src/fl_utf8.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/fl_utf8.cxx')
-rw-r--r--src/fl_utf8.cxx4
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)