vesa: fix error message (interval display)

This commit is contained in:
Christian Helmuth 2013-08-19 10:33:29 +02:00
parent ef1cd4a276
commit 338c49da23
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ class Region_database : public Avl_tree<Region>
insert(region);
return region;
} catch (...) {
PERR("Access to I/O region [%08lx,%08lx) denied", beg, end - beg);
PERR("Access to I/O region [%08lx,%08lx) denied", beg, end);
return 0;
}
}