Apply cppcoreguidelines-init-variables

This commit is contained in:
Alexey Rybalchenko
2021-05-26 12:44:04 +02:00
committed by Dennis Klein
parent 904771e9fa
commit ccbd622130
8 changed files with 14 additions and 14 deletions

View File

@@ -147,7 +147,7 @@ auto Control::InteractiveMode() -> void
try {
RunStartupSequence();
char input; // hold the user console input
char input = 0; // hold the user console input
pollfd cinfd[1];
cinfd[0].fd = fileno(stdin);
cinfd[0].events = POLLIN;