From 3690e9da578223662e9e04ebd1ada5ec5326efec Mon Sep 17 00:00:00 2001 From: cancel Date: Mon, 26 Nov 2018 05:31:35 +0900 Subject: [PATCH] Cleanup unnecessary cast --- sim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim.c b/sim.c index a38d09a..032904a 100644 --- a/sim.c +++ b/sim.c @@ -73,10 +73,10 @@ void orca_run(Field* f) { Term c = row[ix]; switch (c) { case 'a': - act_a(f, (U32)iy, (U32)ix); + act_a(f, iy, ix); break; case 'm': - act_m(f, (U32)iy, (U32)ix); + act_m(f, iy, ix); break; } }