Remove inconsistent use of 'is_' prefix

Fixes #1963
This commit is contained in:
Norman Feske
2016-05-11 18:21:47 +02:00
committed by Christian Helmuth
parent 15141f3ca7
commit 807be83b1b
225 changed files with 876 additions and 705 deletions

View File

@ -87,11 +87,11 @@ class Linker::Rm_area
{
addr_t addr = vaddr;
if (addr && (_range.alloc_addr(size, addr).is_error()))
if (addr && (_range.alloc_addr(size, addr).error()))
throw Region_conflict();
else if (!addr &&
_range.alloc_aligned(size, (void **)&addr,
get_page_size_log2()).is_error())
get_page_size_log2()).error())
{
throw Region_conflict();
}