Changeset 2812 for branches


Ignore:
Timestamp:
Sep 10, 2006, 1:11:41 AM (19 years ago)
Author:
bird
Message:

Exit with 8 instead of -1 on weakld failures. Fixes #123.

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

Legend:

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

    r2810 r2812  
    22
    33TODO: open replace on RAMFS fails with error 32!
     4
     52006-09-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
     6    - emxomfld:
     7        o #123: Exit with 8 instead of -1 on weakld failures.
    48
    592006-09-08: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • branches/libc-0.6/src/emx/src/emxomf/emxomfld.c

    r2593 r2812  
    11411141      /* last words */
    11421142      if (rc)
    1143         fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc);
     1143        {
     1144          fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc);
     1145          rc = 8;
     1146        }
    11441147    }
    11451148  else
    11461149    {
     1150      fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");
    11471151      rc = 8;
    1148       fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");
    11491152    }
    11501153
Note: See TracChangeset for help on using the changeset viewer.