mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-12 20:28:20 +00:00
committed by
Christian Helmuth
parent
d884cf1a9a
commit
d9d65aa86b
@ -161,7 +161,7 @@ class Genode::Xml_attribute
|
||||
* the length, we have to consider both the starting
|
||||
* and the trailing quote character.
|
||||
*/
|
||||
return ascii_to(_value.start() + 1, out) == _value.len() - 2;
|
||||
return ascii_to(_value.start() + 1, *out) == _value.len() - 2;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -557,7 +557,7 @@ class Genode::Xml_node
|
||||
*/
|
||||
template <typename T>
|
||||
bool value(T *out) const {
|
||||
return ascii_to(content_addr(), out) == content_size(); }
|
||||
return ascii_to(content_addr(), *out) == content_size(); }
|
||||
|
||||
/**
|
||||
* Return begin of node including the start tag
|
||||
|
Reference in New Issue
Block a user