Changeset 1291


Ignore:
Timestamp:
Mar 15, 2004, 4:04:59 AM (21 years ago)
Author:
bird
Message:

fixed typo.

Location:
trunk/src/emx/src/lib/process
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/process/spawnvp.c

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r1290 r1291  
    77#include <InnoTekLIBC/logstrict.h>
    88
    9 int _STD(spawnvp) (int mode, const char *name, char * const argv[])
     9int _STD(spawnvp)(int mode, const char *name, char * const argv[])
    1010{
    1111    LIBCLOG_ENTER("mode=%#x name=%s argv=%p\n", mode, name, argv);
    12     int rc = spawnvpe (mode, name, argv, NULL);
     12    int rc = spawnvpe(mode, name, argv, NULL);
    1313    LIBCLOG_RETURN_INT(rc);
    1414}
  • trunk/src/emx/src/lib/process/spawnvpe.c

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r1290 r1291  
    2525    strcpy(exe, name);
    2626    _defext(exe, "exe");
    27     if (!_path(path, exe))
     27    if (_path(path, exe))
    2828        LIBCLOG_RETURN_INT(-1);
    2929    rc = spawnve(mode, path, argv, envp);
Note: See TracChangeset for help on using the changeset viewer.