formatting

This commit is contained in:
Proddy
2022-09-28 21:41:19 +02:00
parent 87887494a5
commit fe0a855618
4 changed files with 4 additions and 4 deletions

View File

@@ -737,7 +737,7 @@ EMSESPStreamConsole::EMSESPStreamConsole(Stream & stream, bool local)
: uuid::console::Shell(commands, ShellContext::MAIN, local ? (CommandFlags::USER | CommandFlags::LOCAL) : CommandFlags::USER)
, uuid::console::StreamConsole(stream)
, EMSESPShell()
, name_(("Serial"))
, name_("Serial")
, pty_(SIZE_MAX)
, addr_()
, port_(0) {

View File

@@ -76,7 +76,7 @@ std::string EMSdevice::brand_to_string() const {
case EMSdevice::Brand::IVT:
return ("IVT");
default:
return ((""));
return ("");
}
}