Changeset 2987 for branches/libc-0.6


Ignore:
Timestamp:
Apr 2, 2007, 12:58:54 AM (18 years ago)
Author:
bird
Message:

Applied fix from Yuri addressing converion of IMPORTS statement conversion in WLINK mode.

File:
1 edited

Legend:

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

    r2815 r2987  
    13001300
    13011301      case _MD_IMPORTS:
    1302         fprintf (response_file, "IMPORT '%s' '%s'", stmt->import.entryname,
     1302        fprintf (response_file, "IMPORT '%s' '%s'", stmt->import.internalname,
    13031303                 stmt->import.modulename);
    13041304        if (stmt->import.flags & _MDEP_ORDINAL)
    13051305          fprintf (response_file, ".%d", stmt->import.ordinal);
    13061306        else if (stmt->import.internalname[0])
    1307           fprintf (response_file, ".'%s'", stmt->import.internalname);
     1307          fprintf (response_file, ".'%s'", stmt->import.entryname);
    13081308        fprintf (response_file, "\n");
    13091309        break;
Note: See TracChangeset for help on using the changeset viewer.