Changeset 2988


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

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

File:
1 edited

Legend:

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

    r2818 r2988  
    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.