Initialize _logOutput to NULL

This commit is contained in:
fvanroie 2021-07-19 00:33:45 +02:00
parent 313d4b4152
commit 89e30f3877

View File

@ -343,7 +343,7 @@ class Logging {
#ifndef DISABLE_LOGGING
int _level[3];
bool _showLevel[3];
Print* _logOutput[3];
Print* _logOutput[3] = {NULL,NULL,NULL};
printfunction _prefix = NULL;
printfunction _suffix = NULL;