Fix a compile error reported by GCC 4.7.0

This commit is contained in:
Christian Prochaska 2012-03-26 23:17:09 +02:00 committed by Norman Feske
parent fa4935627a
commit d6caa73c13
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace Genode {
{
if (obj_id == _obj_id()) return this;
Entry *obj = child(obj_id > _obj_id());
Entry *obj = this->child(obj_id > _obj_id());
return obj ? obj->find_by_obj_id(obj_id) : 0;
}