diff options
Diffstat (limited to 'common/textconsole.cpp')
-rw-r--r-- | common/textconsole.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/textconsole.cpp b/common/textconsole.cpp index 5c69e42379..d533c4b7e4 100644 --- a/common/textconsole.cpp +++ b/common/textconsole.cpp @@ -28,13 +28,13 @@ namespace Common { -static OutputFormatter s_errorOutputFormatter = 0; +static OutputFormatter s_errorOutputFormatter = nullptr; void setErrorOutputFormatter(OutputFormatter f) { s_errorOutputFormatter = f; } -static ErrorHandler s_errorHandler = 0; +static ErrorHandler s_errorHandler = nullptr; void setErrorHandler(ErrorHandler handler) { s_errorHandler = handler; |