Remove GCC warning by inititialize local variable

This commit is contained in:
Fabien Proriol 2019-11-24 08:50:01 +01:00
parent 000346bd4e
commit 0ab56359a1

View File

@ -526,7 +526,7 @@ struct tm KNXValue::timeValue() const
return *timePtr;
}
}
struct tm tmp;
struct tm tmp = {0};
return tmp;
}