Changeset 3732


Ignore:
Timestamp:
Mar 18, 2011, 7:07:21 PM (14 years ago)
Author:
bird
Message:

0.6: Backported r3731: emxomfld.c: Fixed rounding bug when converting /STACK:xxx (link386/ilink) to wlink. Fixes #239.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/libc-0.6/src/emx/src/emxomf/emxomfld.c

    r3462 r3732  
    21332133                  return 1;
    21342134                }
    2135               stack_size = (stack_size + 0xfff) / 1024;
     2135              stack_size = (stack_size + 1023) / 1024;
    21362136            }
    21372137          /* ignore these */
Note: See TracChangeset for help on using the changeset viewer.