Skip to content
Snippets Groups Projects
Commit 81c3249c authored by Anton Johansson's avatar Anton Johansson Committed by Anton
Browse files

Add cast to silence warnings


Signed-off-by: default avatarAnton Johansson <anjo@rev.ng>
parent db994b40
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ typedef uint32_t LibTinyCodeMemOpIdx;
inline LibTinyCodeMemOp tinycode_get_memop(LibTinyCodeMemOpIdx oi)
{
return oi >> 4;
return (LibTinyCodeMemOp) (oi >> 4);
}
inline unsigned tinycode_get_mmuidx(LibTinyCodeMemOpIdx oi)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment