Adding missing ; and _

I'll admit I don't have libmpd on my computer
This commit is contained in:
Lucas Lazare 2019-05-18 20:10:42 -04:00
parent 51be97f9aa
commit e8dd1e2d2c
1 changed files with 2 additions and 2 deletions

View File

@ -206,7 +206,7 @@ std::string waybar::modules::MPD::getStateIcon() {
}
if (connection_ == nullptr) {
spdlog::warn("{}: Trying to fetch state icon while disconnected", module_name_ )
spdlog::warn("{}: Trying to fetch state icon while disconnected", module_name_);
return "";
}
@ -228,7 +228,7 @@ std::string waybar::modules::MPD::getOptionIcon(std::string optionName, bool act
}
if (connection_ == nullptr) {
spdlog::warn("{}: Trying to fetch option icon while disconnected", module_name);
spdlog::warn("{}: Trying to fetch option icon while disconnected", module_name_);
return "";
}