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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/emx/src/emxomf/emxomfld.c

    r3667 r3731  
    24162416                  return 1;
    24172417                }
    2418               stack_size = (stack_size + 0xfff) / 1024;
     2418              stack_size = (stack_size + 1023) / 1024;
    24192419            }
    24202420          /* ignore these */
Note: See TracChangeset for help on using the changeset viewer.