Changeset 798


Ignore:
Timestamp:
Oct 2, 2003, 9:27:28 PM (22 years ago)
Author:
bird
Message:

Fixed confusing error message.

File:
1 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.28 to 1.29
    r797 r798  
    483483
    484484  if (opt_t)
    485     fprintf(stderr, "*** LIB=%s\n", tmp);
     485    fprintf(stderr, "*** %s\n", tmp);
    486486}
    487487
     
    529529   if one without the 'lib' prefix was not found. The '.o' and '.a'
    530530   extensions are tried in the last case since otherwise we can find
    531    a 'something.a' when 'libsomething.lib' is available. */
     531   a 'something.a' when 'libsomething.lib' is available.
     532
     533   Returns pointer to file stream and FULLNAME set to it's name on success.
     534   Returns NULL and FULLNAME a copy of NAME on failure.
     535   */
    532536
    533537static FILE *find_objlib (char *fullname, const char *name, int is_library)
     
    616620        break;
    617621
    618       /* Find the next LIB component. 
     622      /* Find the next LIB component.
    619623         We're skipping empty components. */
    620624      for (;;)
     
    636640            break;
    637641          libpath = x + (*x == ';');
    638         } 
     642        }
    639643    } while (pathlen);
    640644
     645
     646  strcpy (fullname, name);
    641647  return NULL;
    642648}
Note: See TracChangeset for help on using the changeset viewer.