Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/softfloat/common.c

    r1c9ae08 r1433ecda  
    252252        int j;
    253253        for (j = 0; j < 32; j += 8) {
    254                 if (i & (0xFFu << (24 - j))) {
     254                if (i & (0xFF << (24 - j))) {
    255255                        return (j + count_zeroes8(i >> (24 - j)));
    256256                }
Note: See TracChangeset for help on using the changeset viewer.