64-bit fixes

Fixes #734.
This commit is contained in:
Christian Prochaska
2013-05-07 16:31:41 +02:00
committed by Norman Feske
parent 138a37765f
commit 562ac7d059
4 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@ namespace Genode {
template <typename T>
static inline T align_addr(T addr, int align) {
return (addr + _align_offset(align)) & _align_mask((T)align); }
return (addr + _align_offset((T)align)) & _align_mask((T)align); }
/**