aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i386-gen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/i386-gen.c b/i386-gen.c
index 6d924c2..92aa489 100644
--- a/i386-gen.c
+++ b/i386-gen.c
@@ -100,11 +100,11 @@ void g(int c)
ind = ind1;
}
-void o(int c)
+void o(unsigned int c)
{
while (c) {
g(c);
- c = c / 256;
+ c = c >> 8;
}
}