auto formatting

This commit is contained in:
proddy
2020-10-31 08:36:38 +01:00
parent 611f1962d3
commit 5f2d55ea09
4 changed files with 8 additions and 9 deletions

View File

@@ -139,7 +139,7 @@ uint8_t EMSdevice::device_name_2_device_type(const char * topic) {
// return name of the device type, capitalized
std::string EMSdevice::device_type_name() const {
std::string s = device_type_2_device_name(device_type_);
s[0] = toupper(s[0]);
s[0] = toupper(s[0]);
return s;
}