Merge pull request #1147 from lioncash/warn
logging/text_formatter: Use empty braces for initializing CONSOLE_SCREEN_BUFFER_INFO instance
This commit is contained in:
commit
92b85fad70
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void PrintColoredMessage(const Entry& entry) {
|
|||
return;
|
||||
}
|
||||
|
||||
CONSOLE_SCREEN_BUFFER_INFO original_info = {0};
|
||||
CONSOLE_SCREEN_BUFFER_INFO original_info = {};
|
||||
GetConsoleScreenBufferInfo(console_handle, &original_info);
|
||||
|
||||
WORD color = 0;
|
||||
|
|
Loading…
Reference in a new issue