dynamic_rom: fix returned condition

This commit is contained in:
Christian Helmuth 2015-06-09 13:10:09 +02:00
parent 4f927f651b
commit 3d7b865251

View File

@ -252,7 +252,7 @@ struct Dynamic_rom::Main
Xml_node config = Genode::config()->xml_node();
return config.has_attribute("verbose")
& config.attribute("verbose").has_value("yes");
&& config.attribute("verbose").has_value("yes");
}
bool verbose = _verbose_config();