Changeset 2552


Ignore:
Timestamp:
Mar 5, 2006, 12:13:18 AM (19 years ago)
Author:
bird
Message:

#46: real fix.

Location:
branches/libc-0.6/src/emx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/ChangeLog.LIBC

    r2548 r2552  
    22
    33TODO: open replace on RAMFS fails with error 32!
     4
     52006-03-04: knut st. osmundsen <bird-gccos2-spam@anduin.net>
     6    - libc:
     7        o #46: specify .map file extension to the linker.
    48
    592006-03-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • branches/libc-0.6/src/emx/src/emxomf/emxomfld.c

    r2551 r2552  
    16611661  else if (map_fname == NULL)
    16621662    {
    1663       t = xstrdup (output_fname);
     1663      int cch = strlen (output_fname) + 1;
     1664      t = xmalloc (cch + 4);
     1665      memcpy (t, output_fname, cch);
    16641666      _remext (t);
    16651667      strcat (t, ".map");
Note: See TracChangeset for help on using the changeset viewer.