ref: 3690e9da578223662e9e04ebd1ada5ec5326efec
parent: 4fa340881b2b770236b6dd1631eee7ed46c4d2dc
author: cancel <cancel@cancel.fm>
date: Mon Nov 26 00:31:35 EST 2018
Cleanup unnecessary cast
--- a/sim.c
+++ b/sim.c
@@ -73,10 +73,10 @@
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;
}
}