]> git.gag.com Git - fw/sdcc/blobdiff - device/lib/_muluint.c
short (8 bit) replaced by char
[fw/sdcc] / device / lib / _muluint.c
index 12bfb35cc44379bc146b0b3778921e6306aecbfe..4622adcfab22eaa35dc8afbc6eb9e785501c2b83 100644 (file)
@@ -79,7 +79,7 @@ unsigned int _muluint (unsigned int a, unsigned int b)
 // we have to do it the hard way
 
 union uu {
-  struct { unsigned short lo,hi ;} s;
+  struct { unsigned char lo,hi ;} s;
   unsigned int t;
 };