Index: core/fxcrt/fx_basic_gcc.cpp |
diff --git a/core/fxcrt/fx_basic_gcc.cpp b/core/fxcrt/fx_basic_gcc.cpp |
index a55a48629360407eefa6a0834bb42c7ff489d4bd..3547e5fbf089a4cbec58ccccfe473a8a6b5d269e 100644 |
--- a/core/fxcrt/fx_basic_gcc.cpp |
+++ b/core/fxcrt/fx_basic_gcc.cpp |
@@ -138,7 +138,7 @@ FXSYS_FILE* FXSYS_wfopen(const FX_WCHAR* filename, const FX_WCHAR* mode) { |
} |
char* FXSYS_strlwr(char* str) { |
if (!str) { |
- return NULL; |
+ return nullptr; |
} |
char* s = str; |
while (*str) { |
@@ -149,7 +149,7 @@ char* FXSYS_strlwr(char* str) { |
} |
char* FXSYS_strupr(char* str) { |
if (!str) { |
- return NULL; |
+ return nullptr; |
} |
char* s = str; |
while (*str) { |
@@ -160,7 +160,7 @@ char* FXSYS_strupr(char* str) { |
} |
FX_WCHAR* FXSYS_wcslwr(FX_WCHAR* str) { |
if (!str) { |
- return NULL; |
+ return nullptr; |
} |
FX_WCHAR* s = str; |
while (*str) { |
@@ -171,7 +171,7 @@ FX_WCHAR* FXSYS_wcslwr(FX_WCHAR* str) { |
} |
FX_WCHAR* FXSYS_wcsupr(FX_WCHAR* str) { |
if (!str) { |
- return NULL; |
+ return nullptr; |
} |
FX_WCHAR* s = str; |
while (*str) { |