mirror of
https://github.com/Fishwaldo/open-zwave.git
synced 2025-03-15 11:31:40 +00:00
Fix code may be uninitilized build errors
This commit is contained in:
parent
c9315f0d0c
commit
3147be97a2
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ namespace OpenZWave
|
|||
|
||||
unsigned int LogImpl::toEscapeCode(LogLevel _level)
|
||||
{
|
||||
unsigned int code;
|
||||
unsigned int code = 39;
|
||||
|
||||
switch (_level)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue